gpt4 book ai didi

jquery - promise().done() 方法不会等到我的 animate.css 效果完成

转载 作者:行者123 更新时间:2023-11-28 00:07:05 24 4
gpt4 key购买 nike

这是 jsfiddle .

如您所见,我正尝试在大红色球从右侧淡入后在同一窗口中打开 google.com。相反,google.com 在从右开始淡入后约一秒钟打开。如何让我的 window.location 函数等待淡入完全结束?

是的,我已将 JQuery 1.6.2 链接到我的页面。

标记:

    <a href="http://www.google.com"><img class="animated fadeInRightBig" src="http://www.clipartsfree.net/vector/large/roystonlodge_Simple_Glossy_Circle_Button_Red_Vector_Clipart.png" style="">
</a>
</body>

JQuery:

$('.animated').promise().done(function(){
window.location = "http://www.google.com";
});

文森特:我尝试了以下方法,但没有用。有任何想法吗?

$('.animated fadeInRightBig').on('transitionend webkitTransitionEnd oTransitionEnd     otransitionend', function() {
window.location = 'http://www.google.com';
});

最佳答案

为什么不使用这样的回调处理程序...


$("#someElement").show('slide', {}, 400, function(){//你的代码在这里!});

关于jquery - promise().done() 方法不会等到我的 animate.css 效果完成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17957409/

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