animation
Definition
In CSS, the animation property is used to specify the name of the keyframes to use for an animation, as well as other animation options such as the duration, timing function, and iteration count. The animation property is a shorthand property that combines several other animation-related properties into a single declaration.
Examples
Simple animation
.animated-element {
animation: my-animation 5s linear infinite;
}
@keyframes my-animation {
0% {
transform: translateX(0);
}
100% {
transform: translateX(100px);
}
}
Animation with multiple keyframes
.animated-element {
animation: my-animation 5s linear infinite;
}
@keyframes my-animation {
0% {
transform: translateX(0);
}
50% {
transform: translateX(100px);
}
100% {
transform: translateX(0);
}
}
Value
Value | Description |
---|---|
<animation-name> | Specifies the name of the keyframes to use for the animation. |
<animation-duration> | Specifies the duration of the animation. |
<animation-timing-function> | Specifies the speed curve of the animation. |
<animation-delay> | Specifies the amount of time to wait before starting the animation. |
<animation-iteration-count> | Specifies the number of times the animation should repeat. |
<animation-direction> | Specifies the direction in which the animation should play. |
<animation-fill-mode> | Specifies how the animation should apply styles to the element before and after the animation. |
<animation-play-state> | Specifies whether the animation is running or paused. |
Best Practices
- Use the
animation
property in conjunction with the@keyframes
rule to specify the keyframes for the animation. - Specify a clear purpose for the animation and consider how it will enhance the user experience.
- Use appropriate timing and duration for the animation. Avoid making the animation too long or too short.
- Use the
animation-timing-function
property to fine-tune the speed curve of the animation. - Use the
animation-delay
property to control the timing of the animation. - Use the
animation-iteration-count
property to specify the number of times the animation should repeat. - Use the
animation-direction
property to specify the direction in which the animation should play. - Use the
animation-fill-mode
property to specify how the animation should apply styles to the element before and after the animation. - Use the
animation-play-state
property to pause or resume the animation.
Browser Compatibility
Chrome | Firefox | Safari | Internet Explorer | Microsoft Edge | Opera |
---|---|---|---|---|---|
Yes | Yes | Yes | No | Yes | Yes |