1. 程式人生 > 實用技巧 >HTML area shape 屬性

HTML area shape 屬性

[

HTML <area> shape 屬性
HTML <area> 標籤

例項

帶有可點選區域的影象對映:

<img src ="planets.gif" width="145" height="126" alt="Planets"
usemap="#planetmap">
<map name="planetmap">
<area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun">
<area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury">
<area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus">
</map>

瀏覽器支援

所有主流瀏覽器都支援 shape 屬性

定義和用法

shape 屬性指定了區域的形狀。
shape 屬性與 coords 屬性配合,可以規定區域的尺寸、形狀和位置。

HTML 4.01 與 HTML5之間的差異

NONE.

語法

<area shape="default|rect|circle|poly">

屬性值

描述
default 規定全部區域。
rect 定義矩形區域。
circle 定義圓形。
poly 定義多邊形區域。

HTML <area> 標籤

]
  •   本文標題:HTML area shape 屬性 - Break易站
    轉載請保留頁面地址:https://www.breakyizhan.com/html/20939.html