我有以下动画:
@L_301_0@
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); });
解决方法
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); }); });