我有一个页脚,其中我的社交媒体有不同的图标。现在,我想创建一个悬停效果,它显示悬停图标的名称。
例如:我的鼠标在Facebook图标上,然后文本"Facebook"应该出现在一个div中,位于下面的div中!
我知道如何创建它,但是,我不知道如何在完全相同的位置的同一div中显示这些名称。我该怎么做?
<div id="footer1" style="position: fixed; bottom: 0;">
<div class="content-wrapper">
<div class="ft-div-left"> </div>
<div class="ft-div-right">
<p></p>
</div>
<div class="ft-div-middle">
<center>
<p>
<center>
<a href="" style="text-decoration:none; color:white;"><span class="" style="color: white;"></span></a>
<a href="" style="text-decoration:none; color:white;"><span class="" style="color: white;"></span></a>
<a href="" style="text-decoration:none; color:white;"><span class="icon-stumbleupon3" id="issuu" style="color: white;"></span></a>
<a href="" style="text-decoration:none; color:white;"><span class ="icon-twitter3"></span></a>
</br>
<br>
<br>
<span style="font-family:'Open Sans',sans-serif; font-size:11px; color:grey;">© 2014. All Rights Reserved.</span>
</center>
</p>
</center>
</div>
<div id="hoverText">
<span>Here goes the text</span>
</div>
</div>
</div>
我个人在我使用的任何标签中使用title=""
工具提示。
<div id="hoverText">
<span title="hover text">Here goes the text</span>
</div>
这个title=""
工具提示似乎适用于任何地方和任何事情。
我假设CSS唯一的答案是你要找的。您可以使用 CSS visibility
当然还有:hover
这是杰斯菲德尔
例:
唰��
<div id="facebookicon">
<img src="https://www.facebookbrand.com/img/assets/asset.f.logo.lg.png"> </img>
</div>
<div id="onhoverfb">Follow Us</div>
.CSS-
#onhoverfb{
visibility: hidden;
}
#facebookicon:hover ~ #onhoverfb{
visibility: visible;
}
请记住在将鼠标悬停的div 上设置:hover
。
额外:您始终可以添加 css transition
属性,以使悬停显示更流畅。就像淡入。