steps()
設置間隔參數,可以實現分步過渡
第一個參數指定了時間函數中的間隔數量(必須是正整數)
第二個參數可選,接受start
和end
兩個值,指定在每個間隔的起點或是終點發生階躍變化,默認為end
。
steps()
的實現方法:
-
.heart{
-
background-image: url('images/heart-sprite.png');
-
-webkit-animation: animate 1s steps(28) infinite;
-
animation: animate 1s steps(28) infinite;
-
}
-
.star{
-
background-image: url('images/star-sprite.png');
-
-webkit-animation: animate 1s steps(28) infinite;
-
animation: animate 1s steps(28) infinite;
-
}
-
@keyframes animate {
-
from {
-
background-position: 0 0;
-
}
-
to {
-
background-position: -2800px 0;
-
}
-
}
step-start
可以實現與 steps()
效果相同的動畫
step-start
等同於steps(10,start)
動畫分成10步,動畫執行時為開始左側端點的部分為開始。step-end
等同於steps(10,end)
動畫分成10步,動畫執行時以結尾端點為開始,默認值為end
。
step-start
的實現方法:
-
.heartTwo{
-
background-image: url('images/heart-sprite.png');
-
-webkit-animation: animateTwo 1s infinite step-start;
-
animation: animateTwo 1s infinite step-start;
-
}
-
.starTwo{
-
background-image: url('images/star-sprite.png');
-
-webkit-animation: animateTwo 1s infinite step-start;
-
animation: animateTwo 1s infinite step-start;
-
}
-
@keyframes animateTwo {
-
0% { background-position: 0 0; }
-
3.4% { background-position: -100px 0; }
-
6.8% { background-position: -200px 0; }
-
10.2%{ background-position: -300px 0; }
-
13.6%{ background-position: -400px 0; }
-
17% { background-position: -500px 0; }
-
20.4%{ background-position: -600px 0; }
-
23.8%{ background-position: -700px 0; }
-
27.2%{ background-position: -800px 0; }
-
30.6%{ background-position: -900px 0; }
-
34% { background-position: -1000px 0; }
-
37.4%{ background-position: -1100px 0; }
-
40.8%{ background-position: -1200px 0; }
-
44.2%{ background-position: -1300px 0; }
-
47.6%{ background-position: -1400px 0; }
-
51% { background-position: -1500px 0; }
-
54.4%{ background-position: -1600px 0; }
-
57.8%{ background-position: -1700px 0; }
-
61.2%{ background-position: -1800px 0; }
-
64.6%{ background-position: -1900px 0; }
-
68% { background-position: -2000px 0; }
-
71.4%{ background-position: -2100px 0; }
-
74.8%{ background-position: -2200px 0; }
-
78.2%{ background-position: -2300px 0; }
-
81.6%{ background-position: -2400px 0; }
-
85% { background-position: -2500px 0; }
-
88.4%{ background-position: -2600px 0; }
-
91.8%{ background-position: -2700px 0; }
-
95.2%{ background-position: -2800px 0; }
-
100% { background-position: 0 0; }
-
}
steps(1,start)
等同於 step-start
,steps(1,end)
等同於 step-end
動畫幀數在線生成:http://tid.tenpay.com/labs/css3_keyframes_calculator.html