HTML DOM Area shape 属性

2018-12-07 11:48 更新

Area shape 属性

Area 对象参考手册 Area 对象

定义和用法

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

shape 属性指定了图像映射中某个区域的形状。

语法

areaObject.shape=value

shape 属性可以是以下值:

描述
default指定整个地区
rect定义了一个矩形区域
circle定义了一个圆形区域
poly定义一个多边形区域


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

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


实例

实例

下面的例子可返回图像映射中 "Venus" 区域的形状:

<html>
<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>The shape for the "Venus" area is:
<script>
document.write(document.getElementById("venus").shape);
</script>
</p>

</body>
</html>

以上实例输出结果:

The shape for the "Venus" area is: circle

尝试一下 »


Area 对象参考手册 Area 对象
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号