如何在 HTML 中指定一个图像作为客户端图像映射?
使用 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>
广告