举报投诉联系我们 手机版 热门标签 名动网
您的位置:名动网 > html属性和dom属性 HTML DOM Area coords 属性

html属性和dom属性 HTML DOM Area coords 属性

2023-06-12 02:20

html属性和dom属性 HTML DOM Area coords 属性

html属性和dom属性 HTML DOM Area coords 属性

html属性和dom属性

Area coords 属性

Area 对象参考手册 Area 对象

定义和用法

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",它 指定多边形的的坐标。如果第一个和最后一个 坐标是不一样的,浏览器必须加上一个闭合多边形的坐标


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

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


实例

实例

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

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>教程(.cn)</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



Area 对象参考手册 Area 对象
阅读全文
以上是名动网为你收集整理的html属性和dom属性 HTML DOM Area coords 属性全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
  • html属性和dom属性 HTML DOM Ol type 属性

    html属性和dom属性 HTML DOM Ol type 属性

    2023-05-05

    Ol type 属性 Ol 对象实例使用小写字母设置有序列表:document.getElementById("myOl").type="a";定义和用法type 属性设置或返回...

  • javascript,html JavaScript 和 HTML DOM 参考手册

    javascript,html JavaScript 和 HTML DOM 参考手册

    2023-06-03

    JavaScript 和 HTML DOM 参考手册...

  • windows timeout Window setTimeout() 方法

    windows timeout Window setTimeout() 方法

    2023-05-08

    Window setTimeout() 方法 Window 对象定义和用法setTimeout() 方法用于在指定的毫秒数后调用函数或计算表达式。提示: 1000 毫秒...

  • windowstate属性 Window status 属性

    windowstate属性 Window status 属性

    2023-03-26

    Window status 属性 Window 对象定义和用法status 属性可设置或返回窗口状态栏中的文本。语法window.status浏览器支持注意: sta...

  • 2023-05-28

    JavaScript RegExp xxx 元字符 JavaScript RegExp 对象定义和用法xxx 元字符用于查找以八进制数 xxx 规定的字符。如果未找到匹配...

© 2024 名动网 mdwl.vip 版权所有 联系我们