jQuery - 具有多个 div 的鼠标悬停/鼠标悬停
我有一个隐藏的 div 嵌套在一个较大的 div 中,并将其设置为当您将鼠标悬停在较大的 div 上时,隐藏的 div 会向下滑动。鼠标移出时,div 会滑回。问题是,当鼠标移到较小的 div 上时,它会尝试将其向上滑动,因为触发了 mouseout 事件。如何防止 div 再次隐藏,直到鼠标移到两个 div 上为止?
html:(
<div id="topbarVis" class="col1 spanall height1 wrapper">
<div id="topbar"></div>
</div>
额外的类是模块化 css 系统的一部分,定义 #topbarVis 的宽度和高度等
css:
#topbar {
width: 100%;
height: 30px;
margin-top: -25px;
background-color: #000;
}
js:
// On Mouseover -> Show
$("#topbarVis").mouseover(function(){
$("#topbar").animate({marginTop:0}, 300);
});
// On Mouseout -> Hide
$("#topbarVis").mouseout(function(){
$("#topbar").animate({marginTop:-25}, 300);
});
I have a hidden div nested inside a larger div, and set it up so when you mouseover the larger div, the hidden div slides down. On mouseout, the div slides back. The problem is, when the mouse goes over the smaller div, it tries to slide it back up because the mouseout event was triggered. How can I prevent the div from hiding again until the mouse is over neither div?
html:
<div id="topbarVis" class="col1 spanall height1 wrapper">
<div id="topbar"></div>
</div>
(the extra classes are part of a modular css system and define the width and height, among other things, of #topbarVis
css:
#topbar {
width: 100%;
height: 30px;
margin-top: -25px;
background-color: #000;
}
js:
// On Mouseover -> Show
$("#topbarVis").mouseover(function(){
$("#topbar").animate({marginTop:0}, 300);
});
// On Mouseout -> Hide
$("#topbarVis").mouseout(function(){
$("#topbar").animate({marginTop:-25}, 300);
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
mouseenter/mouseleave
代替:...或者只使用
hover()
(docs) 方法,它是mouseenter/mouseleave
的快捷方式:原因是 < code>mouseover/mouseout 是这样的,它会冒泡。因此,当该元素的任何后代获得事件时,它将触发。而
mouseenter/mouseleave
则不会冒泡。实际上唯一支持非标准
mouseenter/mouseleave
事件的浏览器是IE,但jQuery复制了它的行为。Use
mouseenter/mouseleave
instead:...or just use the
hover()
(docs) method which is a shortcut formouseenter/mouseleave
:The reason is that the nature of
mouseover/mouseout
is such that it bubbles. So it will fire when any descendants of the element get the events. Whereasmouseenter/mouseleave
don't bubble.The only browser that actually supports the non-standard
mouseenter/mouseleave
events is IE, but jQuery replicates its behavior.这对我在 IE 上有效。希望有帮助。
使用它作为 CSS。
This works for me on IE. Hope it helps.
Using this as the CSS.