gpt4 book ai didi

javascript - jQuery 动画完成不工作

转载 作者:行者123 更新时间:2023-11-28 05:22:46 26 4
gpt4 key购买 nike

动画本身可以正常工作,但为什么我的完整功能无法正常工作?

fiddle :https://jsfiddle.net/jzhang172/5kfbw066/1/

$(".ok").animate({
height:"300px"

},{
duration:2000
}, {complete:function(){
alert('hey');
}
});
.ok{
background:blue;
height:100px;
width:200px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="ok"></div>

最佳答案

complete 是一个属性,就像 duration

$(".ok").animate({
height: "300px"

}, {
duration: 2000,
complete: function() {
alert('hey');
}
});
.ok {
background: blue;
height: 100px;
width: 200px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="ok"></div>

关于javascript - jQuery 动画完成不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36323720/

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