HTML DOM Area shape 屬性

2018-12-07 11:48 更新

Area shape 屬性

Area 對象參考手冊 Area 對象

定義和用法

shape 屬性可設置或返回某個區(qū)域的 shape 屬性值。

shape 屬性指定了圖像映射中某個區(qū)域的形狀。

語法

areaObject.shape=value

shape 屬性可以是以下值:

描述
default指定整個地區(qū)
rect定義了一個矩形區(qū)域
circle定義了一個圓形區(qū)域
poly定義一個多邊形區(qū)域


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要瀏覽器都支持 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>

以上實例輸出結果:

The shape for the "Venus" area is: circle

嘗試一下 ?


Area 對象參考手冊 Area 對象
以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號