CSS3 动画完成后是否有回调?
有没有办法在css3动画的情况下实现回调函数?对于 Javascript 动画,这是可能的,但在 css3 中找不到任何方法。
我看到的一种方法是在动画持续时间之后执行回调,但这并不能确保它总是在动画结束后立即被调用。这将取决于浏览器 UI 队列。我想要一个更稳健的方法。有什么线索吗?
Is there any way to implement a callback function in case of css3 animation? In case of Javascript animation its possible but not finding any way to do it in css3.
One way I could see is to execute callback after the animation duration but that doesn't make sure that it will always be called right after the animation ends. It will depend on the browser UI queue. I want a more robust method. Any clue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,有。回调是一个事件,因此您必须添加一个事件侦听器来捕获它。这是一个使用 jQuery 的示例:
或者纯 js:
现场演示:
http://jsfiddle.net/W3y7h/
Yes, there is. The callback is an event, so you must add an event listener to catch it. This is an example with jQuery:
Or pure js:
Live demo:
http://jsfiddle.net/W3y7h/
执行回调并处理 CSS3 转换/浏览器兼容性的一种简单方法是 jQuery Transit 插件。示例:
JS Fiddle 演示
An easy way for you to do a callback that also handles your CSS3 transitions/browser compatibilities would be the jQuery Transit Plugin. Example:
JS Fiddle Demo
如果您使用 Javascript 而不是 CSS 创建动画,那么您将需要使用动画 API 来设置动画的回调 onfinish 事件。
值得记住的是,如果动画被取消、删除或暂停,则 onfinish 事件不会触发。您可能还想根据您的需要为这些事件添加侦听器。
If you created the animation with Javascript instead of CSS then you'll want to use the Animation API to set the callback for the animation's onfinish event.
Worth keeping in mind that if the animation is canceled, removed, or paused then the onfinish event does not fire. You may want to add listeners for those events as well depending on your needs.