图像映射中的工具提示(鼠标悬停在上面)

时间:2015-01-21 14:06:54

标签: css css3 tooltip

我有这个工具提示代码,当我将鼠标悬停在整个图像上时,它就是一个工具提示。但我想做同样的过程,但在图像中有几个imagemap。

有什么想法吗?

谢谢。



a.tooltip {outline:none; }
a.tooltip strong {line-height:30px;}
a.tooltip:hover {text-decoration:none;} 
a.tooltip span {
    z-index:10;display:none; padding:14px 20px;
    margin-top:10px; margin-left:28px;
    width:300px; line-height:16px;
}
a.tooltip:hover span{
    display:inline; position:absolute; color:#111;
    border:1px solid #DCA; background:#fffAF0;}
.callout {z-index:20;position:absolute;top:30px;border:0;left:-12px;}
    
/*CSS3 extras*/
a.tooltip span
{
    border-radius:4px;
    box-shadow: 5px 5px 8px #CCC;
}

<a href="#" class="tooltip">
    <img src="http://www.invasao.com.br/wp-content/uploads/2011/05/google.jpg" usemap="#Map" border="0" />
    <map name="Map" id="Map">
      <area shape="poly" coords="22,46" href="#" />
    </map>
    <span>
        <img class="callout" src="http://www.menucool.com/tooltip/cssttp/callout.gif" />
        <img src="/tooltip/src/tooltips-cd2.jpg" style="float:right;" />
        <strong>CSS only Tooltip</strong><br />
        Pure CSS popup tooltips with clean semantic XHTML.
    </span>
</a>
&#13;
&#13;
&#13;

0 个答案:

没有答案