我有以下动画:
jQuery("#fp-small-feature-1").mouseenter(function(){
jQuery(".bar").animate({width: "264px"},500);
});
jQuery("#fp-small-feature-1").mouseleave(function(){
jQuery(".bar").animate({width: "0px"},800);
});
如果您快速连续多次鼠标关闭,如何停止动画排队效果。
答案 0 :(得分:6)
jQuery(document).ready(function(){
jQuery("#fp-small-feature-1").mouseenter(function(){
jQuery(".bar").stop().animate({width: "264px"},500);
});
jQuery("#fp-small-feature-1").mouseleave(function(){
jQuery(".bar").stop().animate({width: "0px"},800);
});
});