HTML DOM Area coords 属性

星星跌入梦境

Area coords 属性


定义和用法

coords 属性可设置或者返回某个区域的 coords 属性值。

coords 属性描述了图像映射中某个可点击区域的坐标。

提示:区域的左上角坐标0,0。

语法


areaObject.coords=value

coords 输出可以是以下值:

描述
x1,y1,x2,y2 如果 shape 属性设置为"rect",它 指定的左上角和右下角的矩形坐标
x,y,radius 如果 shape 属性设置为"circle",它 指定圆心坐标和半径
x1,y1,x2,y2,..,xn,yn 如果 shape 属性设置为 "poly",它 指定多边形的的坐标。如果第一个和最后一个 坐标是不一样的,浏览器必须加上一个闭合多边形的坐标


浏览器支持

HTML DOM Area coords 属性HTML DOM Area coords 属性HTML DOM Area coords 属性HTML DOM Area coords 属性HTML DOM Area coords 属性

所有主要浏览器都支持coords 属性


实例

返回图像映射中 "Venus" 区域的的坐标:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
</head>
<body>

<img src="planets.gif" width="145" height="126" usemap="#planetmap">
<map name="planetmap">
<area id="venus" shape="circle" coords="124,58,8" alt="Venus" href="venus.htm">
</map>
<p>金星的坐标:
<script>
document.write(document.getElementById("venus").coords);
</script>
</p>

</body>
</html>

以上实例输出结果:

金星的坐标: 124,58,8


版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com

目录[+]

取消
微信二维码
微信二维码
支付宝二维码