jQuery Animation() - 太快完成触发

发布于 2024-11-03 15:45:38 字数 347 浏览 1 评论 0原文

我写了一个小动画脚本,从左到右淡化一组条纹。所有动画完成后,应运行回调函数。

脚本在这里:

http://jsfiddle.net/9zkbu/

它工作正常,但我想做从右到左的动画也是如此:

http://jsfiddle.net/FTrhX/

你可以看到回调函数在动画结束之前被触发:( 我唯一改变的是延迟()。我在这里做错了什么?为什么“完整”在所有动画完成之前运行?

I wrote a little animation script that fades a set of stripes from left to right. After all animations are complete a callback functions shoud run.

The script is here:

http://jsfiddle.net/9zkbu/

It works fine, but I want to do the same for a right-to-left animation:

http://jsfiddle.net/FTrhX/

As you can see the callback function is fired before animation ends :(
The only thing I changed is the delay(). What am I doing wrong here? Why is "complete" running before all animations finish?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

久隐师 2024-11-10 15:45:38

你快到了,你确实扭转了方向,但忘记了回调也解释了逆转。这样做对我有用:

complete: (i == 0) ? function(){alert('done');} : null

因为你正在计算另一个方向,如果你尝试在 cols - 1 处检查完成,你会太早得到它,你需要在这里得到 0 。试试这个:http://jsfiddle.net/FTrhX/8/

You are almost there, you did reverse the direction, but forgot on the callback to also account for the reversal. Doing this works for me:

complete: (i == 0) ? function(){alert('done');} : null

Because you are counting the other direction if you try and check complete at cols - 1 you'll get it too early, you need to get it at 0 here. try this one: http://jsfiddle.net/FTrhX/8/

眼趣 2024-11-10 15:45:38

我看了你的两个预览,给我留下了深刻的印象!虽然我不明白为什么第二个函数需要 .stop()

$('.col-' + i).delay(50 * (cols - i))

这种方式也很好用,还是我错过了什么?

I looked at both your previews and I am really impressed! Though I don't understand why .stop() is needed in the second function.

$('.col-' + i).delay(50 * (cols - i))

This way works fine too, or am I missing something?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文