同时结束两个jquery动画

发布于 2024-10-04 02:51:43 字数 216 浏览 1 评论 0原文

我有两个 jquery 动画在两个不同的元素中运行。两者同时触发。现在我想同时结束这些动画,无论每个动画所需的持续时间是多少。

jQuery("#maindiv").animate({ scrollLeft:10 }, 500);
jQuery(".sidediv").animate({ marginLeft:-100 }, 500);

这可能吗?

I have two jquery animations running in two different elements. Both are triggered at the same time. Now i want to end these to animations at the same time irrespective of the durations each take to animate.

jQuery("#maindiv").animate({ scrollLeft:10 }, 500);
jQuery(".sidediv").animate({ marginLeft:-100 }, 500);

Is this possible?

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

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

发布评论

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

评论(1

唔猫 2024-10-11 02:51:43

如果您想强制结束它们,请使用.stop()方法。

jQuery('#maindiv, .sidediv').stop();

If you want to forcibly end them, use the .stop() method.

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