Area shape 属性

定义和用法

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

shape 属性规定区域的形状。

shape 属性与 coords 属性 一起使用来规定区域的大小、形状和位置。

提示:请使用 coords 属性 设置或返回区域的 coords 属性 的值。

实例

例子 1

更改图像映射中具体区域的形状:

document.getElementById("venus").shape = "default";

亲自试一试

例子 2

获取图像映射中具体区域的形状:

var x = document.getElementById("venus").shape;

亲自试一试

语法

返回 shape 属性:

areaObject.shape

设置 shape 属性:

areaObject.shape = "default|rect|circle|poly"

属性值

描述
default 规定整个区域。
rect 定义矩形区域。
circle 定义圆形区域。
poly 定义多边形区域。

技术细节

返回值: 字符串值,表示区域的形状类型。

浏览器支持

Chrome Edge Firefox Safari Opera
Chrome Edge Firefox Safari Opera
支持 支持 支持 支持 支持

相关页面

HTML 参考手册:HTML <area> shape 属性