css - animation颜色变化的问题
世界只因有你
世界只因有你 2017-06-28 09:27:36
0
1
1193

这是初始颜色值

具体看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;
  }
}
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!