欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

CSS3 animation-fill-mode 属性 css 

程序员文章站 2022-05-31 12:14:26
...

CSS3 animation-fill-mode 属性

CSS3 animation-fill-mode属性指定CSS动画在执行之前和之后,如何将样式应用于其目标。

下表总结了此属性的用法上下文和版本历史记录。

默认值: 适用于: 继承: 可动画制作: 版本: JavaScript 语法:   
none
所有元素::before和::after 伪元素
没有
否。请参见 动画属性
 CSS3的新功能
 object.style.animationFillMode="forwards"

animation-fill-mode的使用语法

该属性的语法如下:

animation-fill-mode: none | forwards | backwards | both | initial | inherit

下面的示例演示了如何使用animation-fill-mode属性。

示例
.box {
    width50px;
    height50px;
    background: red;
    position: relative;
    /* Chrome, Safari, Opera */
    -webkit-animation-name: moveit;
    -webkit-animation-duration4s;
    -webkit-animation-fill-mode: forwards;
    /* Standard syntax */
    animation-name: moveit;
    animation-duration4s;
    animation-fill-mode: forwards;
}
 
/* Chrome, Safari, Opera */
@-webkit-keyframes moveit {
    from {left0;}
    to {left50%;}
}
 
/* Standard syntax */
@keyframes moveit {
    from {left0;}
    to {left50%;}
}
测试看看‹/›

属性值

下表描述了此属性的值。

值 描述
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属性浏览器的兼容性,所有主流浏览器均支持该属性。

 
  • Firefox 5+ -moz-,15 +

  • Google Chrome 4+ -webkit-

  • Internet Explorer 10+

  • Apple Safari 4+ -webkit-

  • Opera 12+ -o-,15+ -webkit-

进一步阅读

https://www.nhooo.com/css-reference/css3-animation-fill-mode-property.html

请参考以下教程:CSS3动画

相关属性和规则:   animationanimation-nameanimation-durationanimation-timing-functionanimation-delayanimation-iteration-countanimation-directionanimation-play-state@keyframes

相关标签: css