Jquery 下拉菜单悬停时消失
我设置了一个典型的导航栏,当您将鼠标悬停在一个元素(“我们的团队”)上时,会出现一个下拉菜单(使用下面的 jquery):
$("li#menu-item-20").hover(function(){
$("#dropdown").stop().fadeIn(500);
}, function(){
$("#dropdown").stop().fadeOut(500);
});
然后,当您将鼠标悬停在下拉菜单上时(#dropdown
),下拉菜单会出现淡出(因为我将鼠标悬停在菜单项之外)我需要 jquery 才能工作,这样它将允许将鼠标悬停在下拉菜单上,并且在将鼠标悬停在下拉菜单和导航菜单上后会淡出。
有什么想法吗?您可以在 http://pixelcakecreative.com/cimlife/ 中查看工作示例
I set up a typical navbar, and when you hover over one element ("Our Teams") a dropdown appears (using the jquery below):
$("li#menu-item-20").hover(function(){
$("#dropdown").stop().fadeIn(500);
}, function(){
$("#dropdown").stop().fadeOut(500);
});
When you then hover over the dropdown (#dropdown
) the dropdown fades back out (because I hovered off the menu item) I need the jquery to work so it will allow for hovering over the dropdown, and will fade out after you hover off the dropdown AND the nav menu.
Any ideas? You can see a working example at http://pixelcakecreative.com/cimlife/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果将
mouseleave
事件绑定到#dropdown
元素,下拉列表将一直保留,直到用户将鼠标移出下拉列表:这是上述解决方案的 jsfiddle:http://jsfiddle.net/jasper/kED9T/2/
If you bind the
mouseleave
event to the#dropdown
element the dropdown will remain until the user mouse-outs the dropdown:Here is a jsfiddle of the above solution: http://jsfiddle.net/jasper/kED9T/2/