HTML區域的shape屬性與coords屬性一起使用,以描述<area>元素的大小,形狀和位置。
用法:
<area shape="default | rect | circle | poly">
屬性值:
- default:它用於指定整個區域。
- rect:用於指定矩形區域。
- circle:用於指定圓形區域。
- poly:用於指定多邊形區域。
例:
<!DOCTYPE html>
<html>
<head>
<title>
HTML area shape Attribute
</title>
</head>
<body style="text-align:center;">
<h1>
GeeksForGeeks
</h1>
<h2>
HTML <area> shape Attribute
</h2>
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20190227165729/area11.png"
alt="alt_attribute"
width="300"
height="119"
class="aligncenter"
usemap="#shapemap" />
<map name="shapemap">
<!-- area tag contained image. -->
<area shape="poly"
coords="59, 31, 28, 83, 91, 83"
href=
"https://media.geeksforgeeks.org/wp-content/uploads/20190227165802/area2.png"
alt="Triangle">
<area shape="circle"
coords="155, 56, 26"
href=
"https://media.geeksforgeeks.org/wp-content/uploads/20190227165934/area3.png"
alt="Circle">
<area shape="rect"
coords="224, 30, 276, 82"
href=
"https://media.geeksforgeeks.org/wp-content/uploads/20190227170021/area4.png"
alt="Square">
</map>
</body>
</html>
輸出:
支持的瀏覽器:下麵列出了HTML區域形狀屬性支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- 蘋果Safari
- Opera
相關用法
- HTML <a> shape屬性用法及代碼示例
- HTML shape屬性用法及代碼示例
- HTML Area shape用法及代碼示例
- HTML min屬性用法及代碼示例
- HTML rel屬性用法及代碼示例
- HTML alt屬性用法及代碼示例
- HTML <map> name屬性用法及代碼示例
- HTML <img> src屬性用法及代碼示例
- HTML value屬性用法及代碼示例
- HTML dir屬性用法及代碼示例
- HTML src屬性用法及代碼示例
- HTML for屬性用法及代碼示例
- HTML low屬性用法及代碼示例
- HTML max屬性用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <area> shape Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。