当用户多次悬停(mouseenter
)时,如何防止冒泡或“失控”。当用户悬停我使用slideDown和slideUp用于mouseleave和延迟时我设置250.我只能修复这个,如果延迟我设置为1毫秒。以下是我的剧本:
$("#nav li").mouseenter(function (e) {
e.stopPropagation();
if (!is_opened) {
var left = $(this).position().left;
$(this).children('div').css('left', '-' + left + 'px');
$(this).children('div').slideDown(delay, function () {
// Animation complete.
is_opened = true;
});
}
return false;
});
$("#nav li").mouseleave(function () {
if (is_opened) {
$(this).children('div').slideUp(delay, function () {
// Animation complete.
is_opened = false;
});
} else {
setTimeout(function () {
if (is_opened) {
$('#nav li:first-child').children('div').slideUp(delay, function () {
// Animation complete.
is_opened = false;
});
}
}, 1000);
}
return false;
});
您可以查看我的JsFiddle here
重现问题
答案 0 :(得分:1)
我认为您的问题是由is_opened
标志引起的,然后运行的动画会改变left
css属性
如果您更改鼠标,请输入并将js保留为以下
$("#nav li").each(function() {
//cache vars for better performance
var li = $(this);
var left = $(this).position().left;
var divs = li.children('div');
//change div left first so it only changes once
divs.css('left', '-' + left + 'px');
//do mouse enter and leave stuff
li.mouseenter(function (e) {
e.stopPropagation();
divs.stop(true, true).slideDown(delay);
});
li.mouseleave(function () {
divs.stop().slideUp(delay);
return false;
});
});
它应该有效:Example