我有这张图片,http://imgur.com/FWsgQGE。我想要的是,当用户将鼠标悬停在它们上方时,显示有关灰色区域的信息。我希望信息以div显示。
是否有纯CSS方式可以做到这一点?
答案 0 :(得分:2)
您可以使用带有标题属性的图像映射来保存鼠标悬停工具提示。 像这样:
<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">
<map name="planetmap">
<area shape="rect" coords="0,0,82,126" alt="Sun" href="sun.htm" title="sun">
<area shape="circle" coords="90,58,3" alt="Mercury" href="mercur.htm" title="mercury">
<area shape="circle" coords="124,58,8" alt="Venus" href="venus.htm" "title="venus">
</map>
您可以使用this page进行测试。只需将标题属性添加到代码中即可。