html area標籤
翻譯結果:
英 [ˈeəriə] 美 [ˈeriə]
n.地區;領域;區域,範圍;面積,平地
複數: areas
html area標籤語法
作用:有可點選區域的圖片映射
說明:<img> 中的 usemap 屬性可引用<map> 中的 id或 name 屬性(由瀏覽器決定),所以我們需要同時在<map> 新增id 和name 兩個屬性。
註解:<area> 標籤定義影像映射中的區域(註:影像映射指得是具有可點選區域的影像)。 area 元素總是嵌套在 <map> 標籤中。 <img> 標籤中的 usemap 屬性與 map 元素 name 屬性相關聯,創造影像與映射之間的連結。
html area標籤範例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <img src="http://www.php.cn/tpl/Index/Static/img/banner7.jpg" border="0" usemap="#studymap" alt="study" /> <map name="studymap" id="studymap"> <area shape="circle" coords="180,139,14" href ="http://www.php.cn" /> <area shape="circle" coords="129,161,10" href ="http://www.php.cn" /> <area shape="rect" coords="0,0,110,260" href ="http://www.php.cn" /> </map> </body> </html>
執行實例 »
點擊 "執行實例" 按鈕查看線上實例