gpt4 book ai didi

php - jquery animate 需要帮助

转载 作者:行者123 更新时间:2023-11-29 20:14:56 28 4
gpt4 key购买 nike

我在 jQuery 中使用动画。我在执行动画时遇到问题。它在测试函数之后执行我想在测试函数之前运行它

 $('.next').live('click',function() {
$('.ac_bgimage').animate({
left:"-100em"
}, 15000 );
test();
});

但是现在当我点击下一节课时,我的测试函数首先执行,我想在执行动画后稍后执行。

最佳答案

尝试放入回调函数

 $('.next').live('click',function() {
$('.ac_bgimage').animate({
left:"-100em"
}, 15000 , function(){
test();
});
});

关于php - jquery animate 需要帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7568314/

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