html area標籤用於具有可點擊區域的圖像映射,area元素總是嵌套在
html area標籤怎麼用?
作用:具有可點選區域的圖片映射
說明:
中的usemap 屬性可引用< ;map> 中的id 或name 屬性(由瀏覽器決定),所以我們需要同時在
註解:
標籤定義圖像映射中的區域(註:圖像映射指得是具有可點擊區域的圖像)。 area 元素總是嵌套在
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中文網其他相關文章!