CSS 参考手册 CSS3 animation-fill-mode 属性

2024-02-25 开发教程 CSS 参考手册 匿名 5

定义和用法

animation-fill-mode:设置样式以在动画不播放时应用元素。

注释:其属性值是由逗号分隔的一个或多个填充模式关键词。

默认值:none
继承性:no
版本:CSS3
JavaScript 语法:object.style.animationFillMode=none

语法

animation-fill-mode: none|forwards|backwards|both|initial|inherit;
描述
none默认值。无样式
forwards动画结束后,使用元素的结束属性值。
backwards使用元素的起始值。
both动画将遵循向前和向后的规则。

实例

实例

为 h1 元素规定填充模式:

h1
{
animation-fill-mode: forwards;
}

浏览器支持

属性
animation-fill-mode4.0 -webkit-10.016.0
5.0 -moz-
4.0 -webkit-15.0 -webkit-
12.1
12.0 -o-

Internet Explorer 10、Firefox 以及 Opera 支持 animation-fill-mode 属性。

Safari 和 Chrome 支持替代的 -webkit-animation-fill-mode 属性。

注释:Internet Explorer 9 以及更早的版本不支持 animation-fill-mode 属性。


相关页面

CSS3 教程:CSS3 动画