最新的Web開發教程
 

HTML <area> coords Attribute

<HTML <area>標籤

圖像映射,可點擊方面:

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

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

定義和用法

所述coords屬性指定在圖像映射的區域的坐標。

coords屬性與一起使用shape屬性來指定的大小,形狀,和一個區域的位置。

提示:一個區域的左上角的坐標是0,0。


瀏覽器支持

屬性
coords Yes Yes Yes Yes Yes

HTML 4.01和HTML5之間的差異

沒有。


句法

<area coords="value">

屬性值

描述
x1,y1,x2,y2 指定左,上,右,下矩形角的坐標(對於shape="rect"
x,y,radius 指定圓心坐標和半徑(對於shape="circle"
x1,y1,x2,y2,..,xn,yn 指定多邊形的邊的坐標。 如果第一個和最後坐標對是不一樣的,瀏覽器將添加一對最後坐標到閉合多邊形(對shape="poly"

<HTML <area>標籤