了解 jQuery 效果队列

发布于 2024-10-03 14:02:40 字数 491 浏览 3 评论 0原文

我正在尝试让一个 jQuery 效果/动画一个接一个地运行。我已经尝试过这个:

$('#myDiv').animate({'left':'+=300'},1000).delay(2000).animate({'left':'-=300'},1000);

编辑:

这实际上确实有效 - 只是我的一个粘贴错误。根据 docs,链接效果会自动创建一个队列,这就是我们想要的:

$('#foo').slideUp().fadeIn();

当执行该语句时, 元素开始滑动动画 立即,但褪色过渡 被放入 fx 队列中被调用 仅当滑动过渡时 完成。

(感谢您的帮助,不让我删除问题)

I'm trying to have one jQuery effect/animation run after another. I've tried this:

$('#myDiv').animate({'left':'+=300'},1000).delay(2000).animate({'left':'-=300'},1000);

EDIT:

This actually does work- just a pasting mistake on my part. Chaining effects automatically creates a queue, according to the docs, which is what we want:

$('#foo').slideUp().fadeIn();

When this statement is executed, the
element begins its sliding animation
immediately, but the fading transition
is placed on the fx queue to be called
only once the sliding transition is
complete.

(Thanks for the help, won't let me delete the question)

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

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

发布评论

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

评论(3

独行侠 2024-10-10 14:02:41

jQuery animate() 有一个回调参数

,你可以这样做

$('#myDiv').animate({'left':'+=300'},1000, function () {
   //Start Next Animation
   $(this).animate({'left':'-=300'},1000, function () {
     //Start Next animation
   });
})

jQuery animate() has a call back parameter

with it you can do this

$('#myDiv').animate({'left':'+=300'},1000, function () {
   //Start Next Animation
   $(this).animate({'left':'-=300'},1000, function () {
     //Start Next animation
   });
})
迟到的我 2024-10-10 14:02:41

有两种方法可以做到这一点:使用 callback 参数进行动画处理,以及使用队列

There are two ways to do this: using the callback parameter to animate, and using queues.

指尖凝香 2024-10-10 14:02:41

您是否在 div 上设置了 position:absolute; (或 relative,具体取决于您想要的内容)?如果你没有这样做,那么动画 left 将不会执行任何操作。这是一个工作示例: http://jsfiddle.net/vftNF/

Did you set position: absolute; (or relative, depending on what you want) on the div? If you didn't then animating left won't do anything. Here's a working example: http://jsfiddle.net/vftNF/

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