css.properties

animation-name

The animation-name property specifies the name of a keyframe animation to apply.

Formal Syntax

animation-name = [ none | <keyframes-name> ]# <keyframes-name> = <custom-ident> | <string>

See specification

JavaScript Access

// Access via element.style element.style.animationName = "none";

Browser Support

standard | MDN ยท Spec

FeatureChromeFirefoxSafariEdge
animation-name4316912
none35412

Related Properties