animationName
Summary
The value of the animation-name property of the animation that fired the animation event.
Property of dom/AnimationEventdom/AnimationEvent
Syntax
Note: This property is read-only.
var result = element.animationName;
Examples
//define animation event
var myAnimEvent = new AnimationEvent();
//retrieve name
var myAnimName = myAnimEvent.animationName;
Attributions
Microsoft Developer Network: [Windows Internet Explorer API reference Article]