CSS3 animation-fill-mode
属性
说明
animation-fill-mode
CSS 属性指定 CSS 动画在执行前后应如何将样式应用于其目标。
下表总结了此属性的使用上下文和版本历史记录。
语法
属性的语法如下:
下面的示例显示了 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;
/* 标准语法 */
animation-name: moveit;
animation-duration: 4s;
animation-fill-mode: forwards;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes moveit {
from {left: 0;}
to {left: 50%;}
}
/* 标准语法 */
@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
属性。
基本支持—
|
进一步阅读
请参阅以下教程: CSS3 动画.
相关属性和规则: animation
, animation-name
, animation-duration
, animation-timing-function
, animation-delay
, animation-iteration-count
, animation-direction
, animation-play-state
, @keyframes
.
Advertisements