css - animation顏色變化的問題
世界只因有你
世界只因有你 2017-06-28 09:27:36
0
1
1209

#這是初始顏色值

具體看demo

但是寫上動畫效果後顏色值就變了,這個是什麼原因,怎麼可以讓動畫顏色和初始值顏色一致

世界只因有你
世界只因有你

全部回覆(1)
迷茫

問題出在使用了step(2);

animation-timing-function改成step(1);
bg方法改成0%和50%;

.min-circle:nth-child(2n - 1) {
  -webkit-animation: bg 2s steps(1) infinite;
          animation: bg 2s steps(1) infinite;
}
@keyframes bg {
 0% {
   background: #ff3c18;
  }
  50% {
    background: #ffea67;
  }
}
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板