jquery 关于模糊的淡出问题
我对 JQuery 和以下标记有疑问。
<div id="ParentContainer">
<div class="main">
<div class="sub1"></div>
<div class="sub2">
text
</div>
</div>
</div>
当光标悬停在链接上(在此标记之外)时,我需要 ParentContainer 淡入视图。这可行,但当光标移到 ParentContainer div 之外时,我需要使用淡出方法。这可能吗?
非常感谢,
I have a problem with JQuery and the following markup.
<div id="ParentContainer">
<div class="main">
<div class="sub1"></div>
<div class="sub2">
text
</div>
</div>
</div>
I need the ParentContainer to fade into view when the cursor hovers over a link (outside of this markup). this works but I need to then use the fadeout method when the cursor moves outside of the ParentContainer div. Is that possible?
Many Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的!
参考: mouseleave
Yes it is!
Reference: mouseleave
尝试:
Try: