CSS animation-name Property

❮ Previous Reference Next ❯

Example

div {
  animation-name: myDiv;
}

Meaning

The animation-name property is used to define the animations that should be run.

The @keyframe directive specified defines the properties to animate. The keyword none can be used to override a cascade.

Default value:none
Inherited:No
Animatable:No
Version:CSS3
JavaScript syntax:
object.style.animationName="keyframename|none|initial|inherit|revert|revert-layer|unset";



Standard Syntax

animation-name: keyframename|none|initial|inherit|revert|revert-layer|unset;



Browser Support

The numbers in the table specify the first browser version that fully supports the property.




Status







Property Values

The following table describes the values of this property:

Value Description
keyframename Specifies the name of the keyframe you want to bind to the selector.
none Specifies that there will be no animation. This can be used to override or deactivate any animations coming from the cascade.
initial Sets this property to its default value.
inherit If specified, the associated element takes the computed value of its parent element animation-delay property.
revert Reverts the cascaded value of the property from its current value to the value the property
revert-layer Rollback styles to the ones specified in previous cascade layers.
unset Resets a property to its inherited value if the property naturally inherits from its parent, and to its initial value if not.



Default CSS Property Values

selectors {
  animation-name: none;
}
❮ Previous Reference Next ❯