html area標籤是什麼意思?關於html area標籤的用法你知道多少?本篇文章就為大家介紹了html area標籤的定義和使用案例,還有關於html area標籤屬性的介紹(附實例)
html area標籤的定義和用法:
標籤定義圖像映射中的區域(註:圖像映射指得是具有可點擊區域的圖像)。
area 元素總是嵌套在
註解: 標籤中的 usemap 屬性與 map 元素 name 屬性相關聯,建立映像與映射之間的連結。
HTML標籤實例:
具有可點擊區域的映像映射:
<img src="planets.jpg" border="0" usemap="#planetmap" alt="Planets" /> <map name="planetmap" id="planetmap"> <area shape="circle" coords="180,139,14" href ="venus.html" alt="Venus" /> <area shape="circle" coords="129,161,10" href ="mercur.html" alt="Mercury" /> <area shape="rect" coords="0,0,110,260" href ="sun.html" alt="Sun" /> </map>
標籤屬性:
alt:區域的替代文字。
coords:區域的座標。
href:區域的目標url。
hreflang:目標url的語言,html5中的新屬性。
media:目標url是為何種媒介/裝置最佳化的,html5中的新屬性。
nohref:沒有相關連結的區域,html5不支援。
rel:目前文件與目標url之間的關係,html5中的新屬性。
shape:區域的形狀。
target:在何處開啟目標url。
type:目標url的 MIME 類型,html5中的新屬性。
格式:
#### HTML標籤實例:<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>html< area>标签_PHP笔记</title>
</head>
<body>
<img src="http://www.php.cn/themes/Nana2.09/images/logo.png" alt="html< area>标签" width="300px" height="70px" alt="PHP笔记logo" usemap="#logo">
<map name="logo">
<area shape="rect" coords="0,0,70,70" alt="图标" href="#">
<area shape="rect" coords="85,0,280,50" alt="PHP笔记" href="#">
<area shape="rect" coords="85,50,275,70" alt="www.php.cn" href="#">
</map>
<h3>上面图片被分为3个区域</h3>
</body>
</body>
</html>