区域 coords 属性
描述
coords 属性设置或返回区域的 coords 属性的值。
coords 属性指定区域的 x 和 y 坐标。
coords 属性与 shape 属性一起使用,以指定区域的大小、形状和位置。
提示:区域左上角的坐标为 0,0。
提示:使用 shape 属性设置或返回区域的 shape 属性的值。
浏览器支持
属性 | |||||
---|---|---|---|---|---|
coords | 是 | 是 | 是 | 是 | 是 |
语法
返回 coords 属性
areaObject.coords
设置 coords 属性
areaObject.coords = 值
属性值
值 | 描述 |
---|---|
x1, y1, x2, y2 | 如果 shape 属性设置为 "rect",则它指定矩形左上角和右下角的坐标 |
x, y, 半径 | 如果 shape 属性设置为 "circle",则它指定圆心坐标和半径 |
x1, y1, x2, y2, .., xn, yn | 如果 shape 属性设置为 "poly",则它指定多边形边缘的坐标。如果第一个和最后一个坐标对不相同,则浏览器必须添加最后一个坐标对以关闭多边形 |
技术细节
返回值 | 一个字符串,表示一个逗号分隔的坐标列表 |
---|
更多示例
相关页面
HTML 参考:HTML <area> coords 属性
❮ 区域对象