在悬停时显示 div 并停留直到鼠标离开?
当鼠标悬停在“.socialIcons”上时,我希望 div“.socialIconsShow”淡入,当我将鼠标悬停在“.socialIconsShow”上时,它们淡出。有没有办法让图标在离开“.socialIcons”后保持可见?
<div class="socialNetworks">
<ul>
<li><a href="#">Configure</a></li>
<li><a href="#">Contact</a></li>
<li class="socialIcons"><a href="#">Follow</a></li>
</ul>
</div>
<div class="socialIconsShow">
<div class="facebook"></div>
<div class="twitter"></div>
<div class="linkedin"></div>
</div>
</div>
这是您查看发生了什么情况的链接: http://www.imsmfg.com/new/test/index.php
when hovering on ".socialIcons", i want the div ".socialIconsShow" to fade in, and when I move the mouse to hover over ".socialIconsShow" they fadeout. Is there a way to have the icons stay visible after leaving ".socialIcons"?
<div class="socialNetworks">
<ul>
<li><a href="#">Configure</a></li>
<li><a href="#">Contact</a></li>
<li class="socialIcons"><a href="#">Follow</a></li>
</ul>
</div>
<div class="socialIconsShow">
<div class="facebook"></div>
<div class="twitter"></div>
<div class="linkedin"></div>
</div>
</div>
Here's the link for you see what's going on:
http://www.imsmfg.com/new/test/index.php
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我相信这与我昨天回复的事情完全相同:
jQuery:将鼠标悬停在 div 上打开子菜单,当鼠标移开时该子菜单应保持打开状态
I believe this is exactly the same kind of thing I responded to yesterday:
jQuery: Mousover on a div open submenu which should stay open when mouseout
如果你稍微改变你的标记,你应该被排序。
If you change your markup a little you should be sorted.
您可以通过重新构建标记并使用
:hover
选择器来完成此操作,例如 this< /a>.这不会淡入/淡出。它只会显示/隐藏。
You can do it by re-structuring your markup and using the
:hover
selector like this.This will not fade in / out. It will just show / hide.