美文网首页
css3 实现颜色循环渐变效果(animation, -webk

css3 实现颜色循环渐变效果(animation, -webk

作者: 编程知识圈 | 来源:发表于2017-08-30 21:52 被阅读0次

-webkit-animation:hue 60s infinitelinear;

@-webkit-keyframes hue {

from {

-webkit-filter: hue-rotate(0deg);

}

to {

-webkit-filter: hue-rotate(-360deg);

   }

 }

div

{

width:100px;

height:100px;

background:#f35626;;

-webkit-text-fill-color: transparent;

-webkit-animation:hue 60s infinite linear; /* Safari and Chrome */

}

   @-webkit-keyframes hue {

   from {

  -webkit-filter: hue-rotate(0deg);

  }

    to {

     -webkit-filter: hue-rotate(-360deg);

       }

   }

以上是一个div的例子。欢迎大家参考。

相关文章

网友评论

      本文标题:css3 实现颜色循环渐变效果(animation, -webk

      本文链接:https://www.haomeiwen.com/subject/botfjxtx.html