<html>html
<body>ide
<img src="APP banner1.jpg" border="0" usemap="#planetmap" alt="Planets" />ui
<map name="planetmap" id="planetmap">htm
<area shape="circle" coords="180,139,14" href ="www.baidu.com" target="_blank" alt="Venus"/>blog
<area shape="circle" coords="129,161,10" href ="www.taobao.com" target="_blank" alt="Mercury" />ci
<area shape="poly" coords="1000,200,1200,200,1100,400" href="www.baidu.com" />get
<area shape="circle" coords="1000,200,20" href ="https://www.baidu.com/" target="_blank" alt="Sun" />it
</map>class
</body>
</html>map
<img src="images/kf.png" width="100" height="200" class="hides" border="0" usemap="#planetmap" alt="Planets" />
<map name="planetmap" id="planetmap">
<area shape="polygon" coords="3,22,3,46,96,22,96,46" href="http://wpa.qq.com/msgrd?uin=123456789&Site=************&Menu=yes" target="_blank" alt="QQ客服一號" />
<area shape="polygon" coords="2,81,2,108,98,80,98,108" href="http://wpa.qq.com/msgrd?uin=987654321&Site=************&Menu=yes" target="_blank" alt="QQ客服二號" />
<area shape="polygon" coords="1,147,1,176,98,147,98,176" href="http://wpa.qq.com/msgrd?uin=123456890&Site=************&Menu=yes" target="_blank" alt="QQ客服三號" />
</map>
shape屬性與coords屬性配合,能夠規定區域的尺寸/形狀和位置。
shape屬性用於定義圖像映射中隊鼠標敏感區域的形狀,<a>和<area>具備此屬性。
default:規定所有區域。
圓形:circ或circle
多邊形:poly或polygon
矩形:rect或rectangle
coords屬性規定區域的x和y座標。圖像左上角的座標是「0,0」。<a>和<area>具備此屬性。
圓形:shape=「circle」,coords=「x,y,r」
這裏的x和y定義了圓心的位置,r是以像素爲單位的圓形半徑。
多邊形:shape=「polygon」,coords=「x1,y1,x2,y2,x3,y3,...」
每一對「x,y」座標都定義了多邊形的一個頂點。定義三角形至少須要三組座標;高緯多邊形則須要更多數量的頂點。
多邊形會自動封閉,隱藏在列表的結尾不須要重複第一個座標來閉合整個區域。
矩形:shape=「rectangle」,coords=「x1,y1,x2,y2」
第一個座標是矩形的一個角的頂點座標,另外一對座標是對角的頂點座標,「0,0」是圖像左上角的座標。