例
图像映射,可点击方面:
<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" ) |