CSS Animatable
Definition and Usage
Some CSS properties are animatable, meaning that they can be used in animations and transitions.
Animatable properties can change gradually from one value to another, like size, numbers, percentage and color.
浏览器支持
The numbers in the table specifies the first browser version that fully support CSS animations.
Numbers followed by -webkit-, -moz-, or -o- specify the first version that worked with a prefix.
43.0 4.0 -webkit- |
10.0 | 16.0 5.0 -moz- |
9.0 4.0 -webkit- |
30.0 15.0 -webkit- 12.0 -o- |
Example
Animate the background-color from red to blue:
@keyframes mymove {
from {background-color: red;}
to {background-color: blue;}
}
亲自尝试 »
Animatable Properties
These properties are animatable in CSS: