gpt4 book ai didi

jquery - 停止 jQuery 动画循环

转载 作者:行者123 更新时间:2023-12-01 06:38:08 25 4
gpt4 key购买 nike

我有以下动画:

http://jsfiddle.net/jtqcj/2/

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);
});

});​

关于jquery - 停止 jQuery 动画循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9277084/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com