我曾尝试在title
中使用HTML image map
。
它有效,但我希望弹出或覆盖更大。
有人在tooltip/overlay
上的HTML image map
上有编码示例吗?
答案 0 :(得分:0)
这可能会有所帮助:
<!DOCTYPE html>
<html>
<body>
<p>Click on the sun or on one of the planets to watch it closer:</p>
<img src="https://drive.google.com/uc?id=18roW6-rCYtpxhRE91wt6YimBJ5k0h7jZ" width="145" height="126" alt="Planets" usemap="#planetmap">
<map name="planetmap">
<area shape="rect" coords="0,0,82,126" alt="Sun" href="sun.htm">
<area shape="circle" coords="90,58,3" alt="Mercury" href="mercur.htm">
<area shape="circle" coords="124,58,8" alt="Venus" href="venus.htm">
</map>
</body>
</html>