Imagemap Rollover and Tooltip

痴心易碎 提交于 2019-12-11 15:17:14

问题


<img src="http://www.w3schools.com/TAGS/planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap" />

<map name="planetmap">
  <area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun" />
  <area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury" />
  <area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus" />
</map>

I need to 1) change opacity on mouseover to highlight the hovered area and 2) add simple tooltip to show details of the hovered area.

Is it possible? Is there any jquery plugin that would let me do both.

Many thanks for your help!


回答1:


http://www.frankmanno.com/ideas/css-imagemap/

http://frankmanno.com/ideas/css-imagemap-redux/



来源:https://stackoverflow.com/questions/3890882/imagemap-rollover-and-tooltip

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!