Window: animationend event - Web APIs 编辑
The animationend
event is fired when a CSS Animation has completed. If the animation aborts before reaching completion, such as if the element is removed from the DOM or the animation is removed from the element, the animationend
event is not fired.
Bubbles | Yes |
---|---|
Cancelable | No |
Interface | AnimationEvent |
Event handler property | onanimationend |
The original target for this event is the Element
that had the animation applied. You can listen for this event on the Window
interface to handle it in the capture or bubbling phases. For full details on this event please see the page on HTMLElement: animationend.
Examples
This example listens for the animationend
event:
window.addEventListener('animationend', () => {
console.log('Animation ended');
});
The same, but using the onanimationend
event handler property:
window.onanimationend = () => {
console.log('Animation ended');
};
See a live example of this event.
Specifications
Specification | Status | Comment |
---|---|---|
CSS Animations Level 1 | Working Draft | Initial definition |
Browser compatibility
BCD tables only load in the browser
See also
- CSS Animations
- Using CSS Animations
AnimationEvent
- Related events:
animationstart
,animationcancel
,animationiteration
- This event on
Document
targets:animationend
- This event on
HTMLElement
targets:animationend
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论