[轉貼]HTML link a 與 map area

轉貼 http://www.chou-it.com/info/dictionary/web/html/link.html



map元素 (image map, clickable map),為「線內」(區塊)特性元素,內含area元素和a元素。可以和崁入img、input、object元素的圖像做連動,做成image map。


<p>
<img alt="map" usemap="#sample1" src="../../../../images/map.jpg" />
<map name="sample1" >
<area shape="rect" coords="20,25,70,70" href="#map"/>
<area shape="circle" coords="110,45,20" href="#map"/>
<area shape="poly" coords="165,20,140,70,185,70" href="#map"/>
</map>
</p>
map




留言