Area shape 属性
Area 对象的 shape 属性可以设置或返回 <area> 元素的 shape 属性值
shape 属性指定了 <map> 元素中某个 <area> 的形状
语法
areaObject.shape= "default | rect | circle | ploy "
值说明
值 | 描述 |
---|---|
default | 指定整个地区 |
rect | 定义了一个矩形区域 |
circle | 定义了一个圆形区域 |
poly | 定义一个多边形区域 |
浏览器支持
所有主要浏览器都支持 shape 属性
范例
返回 <map> 中 "Venus" 区域的形状
<img src="/static/i/html/planets.gif" width="145" height="126" usemap="#planetmap"> <map name="planetmap"> <area id="venus" shape="circle" coords="124,58,8" alt="Venus" href="/static/media/html/venus.html"> </map> <p>金星区域的形状: <script> document.write(document.getElementById("venus").shape); </script> </p>