停止多个悬停事件的传播

时间:2015-02-11 11:34:26

标签: javascript jquery javascript-events each preventdefault

我的主页包含多个框。

在每个方框上,当鼠标悬停或移出时,标题会消失并显示内容。

工作正常。

问题是,如果在短时间内将鼠标悬停在一个以上的盒子上,那就太乱了。

$( ".views-field-wrapper" ).each(function(){         
    $( this ).hover(function() {        
        $( "#front_panel",this ).fadeOut(400);
        $( "#back_panel",this ).delay(500).fadeIn(1000);        
      }, function(){           
        $( "#back_panel",this ).fadeOut(400);
        $( "#front_panel",this ).delay(500).fadeIn(1000);
    });
});

当鼠标悬停在另一个盒子上时,如何停止之前的鼠标悬停反应?

编辑:

我的初始代码:http://jsfiddle.net/tz3d6ct6/

Kumar的代码与jquery>完美配合1.6(我必须使用jquery1.4)http://jsfiddle.net/hrkf5p7w/

1 个答案:

答案 0 :(得分:2)

尝试使用stop(),无需使用循环绑定hover event

$( ".views-field-wrapper" ).hover(function() { // no need to use each loop
        $( "#front_panel",this ).stop(true).fadeOut(400);
        $( "#back_panel",this ).delay(500).fadeIn(1000);
    }, function(){
        $( "#back_panel",this ).stop(true).fadeOut(400);
        $( "#front_panel",this ).delay(500).fadeIn(1000);    
});

在不使用delay()之类的情况下尝试使用

$(".views-field-wrapper").hover(function () { // no need to use each loop
    $("#front_panel", this).stop(true).fadeOut(400);
    $("#back_panel", this).fadeIn(1000);

}, function () {
    $("#back_panel", this).stop(true).fadeOut(400);
    $("#front_panel", this).fadeIn(1000);
});

$(".views-field-wrapper").hover(function () { // no need to use each loop
    $("#front_panel", this).stop(true).fadeOut(400);
    $("#back_panel", this).fadeIn(1000);
    
}, function () {
    $("#back_panel", this).stop(true).fadeOut(400);
    $("#front_panel", this).fadeIn(1000);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class='views-field-wrapper type-t nodetype-t'>
    <div id='front_panel'>title</div>
    <div style='display:none' id='back_panel'>teaser</div>
</div>