<object data="planets.gif" alt="Planets" type="image/gif" usemap="#Map1"> <map name="Map1"> <a href="sun.htm" shape="rect"coords="0,0,110,260"
>Sun</a> <a href="mercur.htm" shape="circle"coords="129,161,10"
>Mercury</a> <a href="venus.htm" shape="circle"coords="180,139,14"
>Venus</a> </map> </object>
coords 属性与 shape 属性 配合,可以规定 object 或 img 元素中链接的尺寸、形状和位置。
注释:左上角的坐标是 0,0。
提示:如需创建能够在所有浏览器中运行的图像映射,请使用 area 元素 。
只有 Firefox 和 Opera 支持 coords 属性。
<a coords="value">
值 | 描述 |
---|---|
x1,y1,x2,y2 | 如果 shape 属性设置为 "rect",则该值规定矩形左上角和右下角的坐标。 |
x,y,radius | 如果 shape 属性设置为 "circ",则该值规定圆心的坐标和半径。 |
x1,y1,x2,y2,..,xn,yn | 如果 shape 属性设置为 "poly",则该值规定多边形各边的坐标。如果第一个坐标和最后一个坐标不一致,那么为了关闭多边形,浏览器必须添加最后一对坐标。 |