带有叠加层/工具提示的HTML图像地图

时间:2019-03-10 14:45:59

标签: html tooltip overlay imagemap

我曾尝试在title中使用HTML image map。 它有效,但我希望弹出或覆盖更大。 有人在tooltip/overlay上的HTML image map上有编码示例吗?

1 个答案:

答案 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>