CSS3 animation-fill-mode属性指定CSS动画在执行之前和之后,如何将样式应用于其目标。
下表总结了此属性的用法上下文和版本历史记录。
默认值: | none |
---|---|
适用于: | 所有元素::before和::after 伪元素 |
继承: | 没有 |
可动画制作: | 否。请参见 动画属性。 |
版本: | CSS3的新功能 |
JavaScript 语法: | object.style.animationFillMode="forwards" |
该属性的语法如下:
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; 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。