1. 程式人生 > >HTML:如何點選圖片上的某個點實現對映連結

HTML:如何點選圖片上的某個點實現對映連結

廢話不多說,附上程式碼

<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">

<map name="planetmap">
  <area shape="rect" coords="0,0,82,126" alt="Sun" href="sun.htm">
  <area shape="circle" coords="90,58,3" alt="Mercury" href="mercur.htm">
  <area shape="circle" coords="124,58,8" alt="Venus" href="venus.htm">
</map>

首先頂一個img標籤,接著在img裡面的屬性usemap制定設計好的map標籤,在map中設定指定的點選範圍

shape為rect時 coors的意思是 矩形的左上角座標和右下角左邊

shape為circle時,coors的意思是 圓心和半徑

此外還可以是多邊形,coors的各頂點座標依次為(x1,y1)、(x2,y2)、(x3,y3) ......即可