Let the <div> element retain the style values from the last keyframe when the animation ends:
div {
animation-fill-mode: forwards;
}
Try it Yourself »
More "Try it Yourself" examples below.
The animation-fill-mode
property specifies a style for the element when the animation is not playing (before it starts, after it ends, or both).
CSS animations do not affect the element before the first keyframe is played or after the last keyframe is played. The animation-fill-mode
property can override this behavior.
Default value: | none |
---|---|
Inherited: | no |
Animatable: | no. Read about animatable |
Version: | CSS3 |
JavaScript syntax: | object.style.animationFillMode="forwards" Try it |
The numbers in the table specify the first browser version that fully supports the property.
Numbers followed by -webkit-, -moz-, or -o- specify the first version that worked with a prefix.
Property | |||||
---|---|---|---|---|---|
animation-fill-mode | 43.0 4.0 -webkit- |
10.0 | 16.0 5.0 -moz- |
9.0 4.0 -webkit- |
30.0 15.0 -webkit- 12.1 12.0 -o- |
animation-fill-mode: none|forwards|backwards|both|initial|inherit;
Value | Description |
---|---|
none | Default value. Animation will not apply any styles to the element before or after it is executing |
forwards | The element will retain the style values that is set by the last keyframe (depends on animation-direction and animation-iteration-count) |
backwards | The element will get the style values that is set by the first keyframe (depends on animation-direction), and retain this during the animation-delay period |
both | The animation will follow the rules for both forwards and backwards, extending the animation properties in both directions |
initial | Sets this property to its default value. Read about initial |
inherit | Inherits this property from its parent element. Read about inherit |
Let the <div> element get the style values set by the first keyframe before the animation starts (during the animation-delay period):
div {
animation-fill-mode: backwards;
}
Try it Yourself »
Let the <div> element get the style values set by the first keyframe before the animation starts, and retain the style values from the last keyframe when the animation ends:
div {
animation-fill-mode: both;
}
Try it Yourself »
CSS tutorial: CSS Animations
HTML DOM reference: animationFillMode property
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!