图像滚动和工具提示

时间:2010-10-08 13:19:18

标签: javascript jquery html imagemap

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

我需要1)在鼠标悬停时更改不透明度以突出显示悬停区域; 2)添加简单的工具提示以显示悬停区域的详细信息。

有可能吗?是否有任何jquery插件可以让我这两个。

非常感谢你的帮助!