CSS3 animation-fill-mode 属性 css
程序员文章站
2022-05-31 12:29:26
...
CSS3 animation-fill-mode 属性
CSS3 animation-fill-mode属性指定CSS动画在执行之前和之后,如何将样式应用于其目标。
下表总结了此属性的用法上下文和版本历史记录。
none |
所有元素::before和::after 伪元素 |
没有 |
否。请参见 动画属性。 |
CSS3的新功能 |
object.style.animationFillMode="forwards" |
animation-fill-mode的使用语法
该属性的语法如下:
animation-fill-mode: none | forwards | backwards | both | initial | inherit
下面的示例演示了如何使用animation-fill-mode属性。
示例
.box {
width: 50px;
height: 50px;
background: red;
position: relative;
/* Chrome, Safari, Opera */
-webkit-animation-name: moveit;
-webkit-animation-duration: 4s;
-webkit-animation-fill-mode: forwards;
/* Standard syntax */
animation-name: moveit;
animation-duration: 4s;
animation-fill-mode: forwards;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes moveit {
from {left: 0;}
to {left: 50%;}
}
/* Standard syntax */
@keyframes moveit {
from {left: 0;}
to {left: 50%;}
}
测试看看‹/›
属性值
下表描述了此属性的值。
none | 动画在执行之前或之后不会对目标应用任何样式。 |
forwards | 动画结束后(由决定animation-iteration-count),动画将在动画结束时应用属性值。 |
backwards | 动画将应用在关键帧中定义的属性值,该关键帧将由animation-delay属性定义的时间段内开始动画的第一次迭代。这些是from关键帧的值(animation-direction为normal或时alternate)或to关键帧的值(animation-direction为reverse或时alternate-reverse)。 |
both | 动画将遵循向前和向后的规则,从而在两个方向上扩展了动画属性。 |
initial | 将此属性设置为其默认值。 |
inherit | 如果指定,则关联元素采用其父元素animation-fill-mode属性的计算值。 |
浏览器兼容性
animation-fill-mode属性浏览器的兼容性,所有主流浏览器均支持该属性。
|
进一步阅读
https://www.nhooo.com/css-reference/css3-animation-fill-mode-property.html
请参考以下教程:CSS3动画。
相关属性和规则: animation,animation-name,animation-duration,animation-timing-function,animation-delay,animation-iteration-count,animation-direction,animation-play-state,@keyframes。