animation-fill-mode
收藏:0
阅读:92
CSS3 animation-fill-mode 属性
实例
把物体动画地从一个地方移动到另一个地方,并让它停留在那里:
animation-fill-mode:forwards;
-webkit-animation-fill-mode:forwards; /* Safari 和 Chrome */
-webkit-animation-fill-mode:forwards; /* Safari 和 Chrome */
浏览器支持
Internet Explorer 10、Firefox 和 Opera 支持 animation-fill-mode 属性。
Safari 和 Chrome 支持另一个可替代该属性的属性,即 -webkit-animation-play-state 属性。
注意:Internet Explorer 9 及其之前的版本不支持 animation-fill-mode 属性。
定义和用法
animation-fill-mode 属性规定当动画不播放时(当动画完成时,或当动画有一个延迟未开始播放时),要应用到元素的样式。
默认情况下,CSS 动画在第一个关键帧播放完之前不会影响元素,在最后一个关键帧完成后停止影响元素。animation-fill-mode 属性可重写该行为。
默认值: | none |
---|---|
继承: | 否 |
可动画化: | 否。请参阅 可动画化(animatable)。 |
版本: | CSS3 |
JavaScript 语法: | object.style.animationFillMode="forwards" |
CSS 语法
animation-fill-mode: none|forwards|backwards|both|initial|inherit;
属性值
值 | 描述 |
---|---|
none | 默认值。动画在动画执行之前和之后不会应用任何样式到目标元素。 |
forwards | 在动画结束后(由 animation-iteration-count 决定),动画将应用该属性值。 |
backwards | 动画将应用在 animation-delay 定义期间启动动画的第一次迭代的关键帧中定义的属性值。这些都是 from 关键帧中的值(当 animation-direction 为 "normal" 或 "alternate" 时)或 to 关键帧中的值(当 animation-direction 为 "reverse" 或 "alternate-reverse" 时)。 |
both | 动画遵循 forwards 和 backwards 的规则。也就是说,动画会在两个方向上扩展动画属性。 |
initial | 设置该属性为它的默认值。请参阅 initial。 |
inherit | 从父元素继承该属性。请参阅 inherit。 |
相关文章
CSS3 教程:CSS3 动画(Animations)