Easy Tutorial
❮ Css3 Pr Tab Size Pr Dim Width ❯

CSS3 animation-name Property

Example

Specify a name for the @keyframes animation:

animation-name: mymove;
-webkit-animation-name: mymove; /* Safari and Chrome */

Browser Support

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

Numbers followed by -webkit-, -ms-, or -moz- specify the first version that supported the prefixed property.

Property
animation-name 43.0 <br>4.0 -webkit- 10.0 16.0 <br>5.0 -moz- 9.0 <br>4.0 -webkit- 30.0 <br>15.0 -webkit- <br>12.0 -o-

Definition and Usage

The animation-name property specifies a name for the @keyframes animation.

Default value: none
Inherited: no
--- ---
Version: CSS3
--- ---
JavaScript syntax: object.style.animationName="mymove"
--- ---

Syntax

Value Description
keyframename Specifies the name of the keyframe to bind to the selector
none Specifies that there is no animation (used to override animations from cascading)

Related Articles

CSS3 Tutorial: CSS3 Animations

❮ Css3 Pr Tab Size Pr Dim Width ❯