HTML <area> coords 属性
HTML <area> coords 属性设置区域的 x 和 y 坐标
coords 属性与 shape 属性配合使用,来设置区域的尺寸、形状和位置
图像左上角的坐标是 "0,0"
语法
<area coords="value">
属性值
值 | 描述 |
---|---|
x1,y1,x2,y2 | 如果 shape 属性设置为 "rect",则该值设置矩形左上角和右下角的坐标 |
x,y,radius | 如果 shape 属性设置为 "circ",则该值设置圆心的坐标和半径 |
x1,y1,x2,y2,..,xn,yn | 如果 shape 属性设置为 "poly",则该值设置多边形各顶点的值 如果第一个坐标和最后一个坐标不一致,那么为了关闭多边形,浏览器必须添加最后一对坐标 |
浏览器支持
所有主流浏览器都支持 coords 属性
范例
带有可点击区域的图像映射
<img src="/static/i/img1.jpg" width="145" height="126" alt="Planets" usemap="#planetmap"> <map name="planetmap"> <area shape="rect" coords="0,0,82,126" alt="Sun" href="/static/i/html/sun.html"> <area shape="circle" coords="90,58,3" alt="Mercury" href="/static/i/html/sun2.html"> <area shape="circle" coords="124,58,8" alt="Venus" href="/static/i/html/sun2.html"> </map>