AnimationEvent

这是一个实验中的功能
此功能某些浏览器尚在开发中,请参考浏览器兼容性表格以得到在不同浏览器中适合使用的前缀。由于该功能对应的标准文档可能被重新修订,所以在未来版本的浏览器中该功能的语法和行为可能随之改变。

Summary

AnimationEvent 接口表示提供与动画相关的信息的事件。

Properties

属性继承其父级Event.

AnimationEvent.animationName 只读
Is a DOMString containing the value of the animation-name CSS property associated with the transition.
AnimationEvent.elapsedTime 只读
Is a float giving the amount of time the animation has been running, in seconds, when this event fired, excluding any time the animation was paused. For an "animationstart" event, elapsedTime is 0.0 unless there was a negative value for animation-delay, in which case the event will be fired with elapsedTime containing  (-1 * delay).
AnimationEvent.pseudoElement 只读
Is a DOMString, starting with '::', containing the name of the pseudo-element the animation runs on. If the animation doesn't run on a pseudo-element but on the element, an empty string: ''.

Constructor

AnimationEvent()
Creates an AnimationEvent event with the given parameters.

Methods

Also inherits methods from its parent Event.

AnimationEvent.initAnimationEvent()
Initializes a AnimationEvent created using the deprecated Document.createEvent("AnimationEvent") method.

Specifications

Specification Status Comment
CSS Animations
AnimationEvent
Working Draft Initial definition.

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support 1.0 webkit 6.0 (6.0) 10.0 12 o
12.10 (without prefix)
15.0 webkit
4.0 webkit
AnimationEvent() constructor 未实现 23.0 (23.0) 未实现 未实现 未实现
initAnimationEvent() 1.0 6.0 (6.0)
Removed in 23.0 (23.0)
10.0 12 4.0
pseudoelement 未实现 23.0 (23.0) 未实现 未实现 未实现
Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support (Yes)webkit 6.0 (6.0) 10.0 12 o
12.10 (without prefix)
15.0 webkit
(Yes)webkit
AnimationEvent() constructor 未实现 23.0 (23.0) 未实现 未实现 未实现
initAnimationEvent() (Yes) 6.0 (6.0)
Removed in 23.0 (23.0)
10.0 (Yes) (Yes)
pseudoelement 未实现 23.0 (23.0) 未实现 未实现 未实现

See also

文档标签和贡献者