如何在单个元素上同时运行两个 jQuery 动画
只要动画功能相同,我们就可以写一行代码,比如 animate( {top: "50px", opacity: 0} ),但是如果动画功能相同,如何同时执行动画呢?功能不同,比如向上滑动和 animate( {top: "50px"} )?
We can write a single line of code only if the animation functions are same, like animate( {top: "50px", opacity: 0} )
, but how do you perform the animations simultaneously if the animation functions are different, say slide up and animate( {top: "50px"} )
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
调用
.animate()
时,将queue
值设置为 false,这将导致所有动画同时运行。jsfiddle 示例
When calling to
.animate()
set thequeue
value to false, which will cause all animations to run at the same time.Example on jsfiddle