jQuery 同时对数组中的所有对象进行动画处理
我正在编写一个在网页上制作动画的脚本。 在此过程中,我需要将多个元素添加到数组中,然后同时对它们进行动画处理。
是否可以使用 jQuery 同时对数组中的所有对象进行动画处理?或者也许有更好的方法?
谢谢
I am writing a script that does animations on a web-page.
In the process I need to add several elements to an array, and then simultaneously animate them.
Is it possible to use jQuery to SIMULTANEOUSLY animate all objects in an array? Or maybe there's a better method for that?
Thanx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果数组中有多个 DOM 元素,您所需要做的就是将它们放入 jQuery 对象中,然后执行动画。
If you have several DOM elements in an array, all you need to do is slip them into a jQuery object, and do your animation.