css3 – CSS动画改变帧速率

前端之家收集整理的这篇文章主要介绍了css3 – CSS动画改变帧速率前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
查看CSS动画来替换加载轮子中的动画GIF.

这里有一个基本的例子http://jsfiddle.net/kFmY8/448/

#me {
    -webkit-animation: rotation 2s infinite linear;
}

@-webkit-keyframes rotation {
    from {-webkit-transform: rotate(0deg);}
    to   {-webkit-transform: rotate(360deg);}
}

我想改变帧速率,这样每个周期只有12帧.这将取代动画的流动性,使其更接近于它所取代的动画GIF.

可以这样做吗?

解决方法

您希望使用steps()作为缓动函数而不是线性函数.

http://jsfiddle.net/trolleymusic/uTd3x/

我已经改变了你的动画值:

-webkit-animation: rotation 2s infinite linear;

至:

-webkit-animation: rotation 2s infinite steps(12);

step函数内部的数字是将动画划分为多少帧.

参考位置:http://css-tricks.com/snippets/css/keyframe-animation-syntax/ – 大约一半的位置有一个名为Steps()的部分

原文链接:https://www.f2er.com/css/216110.html

猜你在找的CSS相关文章