使用 usemap 屬性將圖片指定為 HTML 中的用戶端映像映射。您可以嘗試執行以下程式碼來實作 usemap 屬性 -
<!DOCTYPE html> <html> <head> <title>HTML map Tag</title> </head> <body> <img src = "/images/html.gif" alt = "HTML Map" border = "0" usemap = "#html"/> <!-- Create Mappings --> <map name = "html"> <area shape = "circle" coords = "154,150,59" href = "about/about_team.htm" alt = "Team" target = "_self" /> </map> </body> </html>
以上是如何在HTML中將影像指定為客戶端影像映射?的詳細內容。更多資訊請關注PHP中文網其他相關文章!