--- title: animationend slug: Web/Events/animationend tags: - Animation - AnimationEvent - CSS Animations - CSS3 Animations - Event - Reference - animationend translation_of: Web/API/HTMLElement/animationend_event ---

animationend 事件会在一个 CSS 动画完成时触发(不包括完成前就已终止的情况,例如元素变得不可见或者动画从元素中移除)。

常规信息

规范
{{SpecName("CSS3 Animations")}}
接口
{{domxref("AnimationEvent")}}
是否冒泡
事件可取消
目标
{{domxref("Document")}}, {{domxref("Element")}}, {{domxref("Window")}}
默认行为

属性表

属性 类型 描述
target {{ReadOnlyInline}} {{domxref("EventTarget")}} 事件目标(DOM 顶层目标)。
type {{ReadOnlyInline}} {{domxref("DOMString")}} 事件类型
bubbles {{ReadOnlyInline}} boolean 事件是否正常冒泡?
cancelable {{ReadOnlyInline}} boolean 可否取消该事件?
animationName {{ReadOnlyInline}} {{domxref("DOMString")}} 与该动画相关的 CSS 属性值。
elapsedTime {{ReadOnlyInline}} Float 动画运行时长,单位为秒,与直到该事件被触发的时间相一致,不包括任何动画暂停时的时长。应等于 {{cssxref("animation-iteration-count")}} 乘以 {{cssxref("animation-duration")}} 的积,动画总活动的时长。

相关事件

参见