codecamp

CSS3 animation-fill-mode 属性

定义和用法

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-mode 4.0 -webkit- 10.0 16.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 动画


CSS3 animation-duration 属性
CSS3 animation-iteration-count 属性
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

CSS属性

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }