html 5プローブ

1662 ワード

mapラベル
定義と使用法
ラベルは、クライアントの画像マッピングを定義します.画像マッピングは、クリック可能な領域を有する画像です.
ヒントとコメント:
注記:area要素はmap要素の内部にネストされます.area要素は、画像マッピング内の領域を定義することができる.
ツールバーの
ツールバーの

説明
4
5
id
unique_name
mapラベルに一意の名前を定義します.
4
5
name
unique_name
mapラベルに一意の名前を定義します.サポートされていません.
4
 
<body>
		<div class="guihua">
			<img src="../   /1.jpg"  border="0" usemap="#test" alt="      -    " style="height:1590px;width:1000px;"/>	
			<map name="test" id="test">
				<area shape="circle"coords="575,458,10" href="javascript:alert('       ')"> 
				<area shape="circle"coords="592,547,10" href="javascript:alert('      ')">
				<area shape="circle"coords="600,565,10" href="javascript:alert('      ')">
				<area shape="circle"coords="445,654,10" href="javascript:alert('       ')">
				<area shape="circle"coords="653,684,40" href="javascript:alert('      ')">
				<area shape="circle"coords="437,816,57" href="javascript:alert('            ')">
			<!--	<area shape="circle"coords="795,858,42" href="javascript:alert('             ')">-->
				<area shape="circle"coords="795,858,42" href="javascript:alert(this)">
			</map>
			<!---->
		</div>
</body>