鼠标悬停多次时鼠标中心冒泡

时间:2014-05-07 13:05:48

标签: javascript jquery

当用户多次悬停(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

重现问题

  • 多次悬停目录并停止悬停(但将光标指向目录),您会看到下拉列表会隐藏但实际上它应该向下滑动。

1 个答案:

答案 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