html area標籤用於具有可點擊區域的圖像映射,area元素總是嵌套在dab9f699790ab0922e596ecb9f6677d5標籤中。 a1f02c36ba31691bcfe87b2722de723b標籤中的usemap屬性與map元素name屬性相關聯,建立映像與映射之間的聯繫。
html area標籤怎麼用?
作用:具有可點選區域的圖片映射
說明:
a1f02c36ba31691bcfe87b2722de723b 中的usemap 屬性可引用< ;map> 中的id 或name 屬性(由瀏覽器決定),所以我們需要同時在dab9f699790ab0922e596ecb9f6677d5 新增id 和name 兩個屬性。
註解:
03fc64e1e502d5ba947b3a9af06d2d2a 標籤定義圖像映射中的區域(註:圖像映射指得是具有可點擊區域的圖像)。 area 元素總是嵌套在 dab9f699790ab0922e596ecb9f6677d5 標籤中。 a1f02c36ba31691bcfe87b2722de723b 標籤中的 usemap 屬性與 map 元素 name 屬性相關聯,建立映像與映射之間的連結。
html area標籤 範例
<!DOCTYPE html> <html> <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>
以上是html area標籤怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!