Area shape 屬性
Area 對象定義和用法
shape 屬性可設置或返回某個區(qū)域的 shape 屬性值。
shape 屬性指定了圖像映射中某個區(qū)域的形狀。
語法
areaObject.shape=value
shape 屬性可以是以下值:
值 | 描述 |
---|---|
default | 指定整個地區(qū) |
rect | 定義了一個矩形區(qū)域 |
circle | 定義了一個圓形區(qū)域 |
poly | 定義一個多邊形區(qū)域 |
瀏覽器支持
所有主要瀏覽器都支持 shape 屬性
實例
實例
下面的例子可返回圖像映射中 "Venus" 區(qū)域的形狀:
<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>
<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 對象
更多建議: