NatChen

Once you have chosen the road of life, you have to be brave enough to go to the end and never look back.

文字和背景渐变动效

1.文字渐变动效         

         h1{color: #f35626;
  background-image: -webkit-linear-gradient(92deg,#f35626,#feab3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: hue 60s infinite linear;
  }
@-webkit-keyframes hue {
        from {-webkit-filter: hue-rotate(0deg)}
        to {-webkit-filter: hue-rotate(-360deg)}
          }

2.背景渐变动效 

         h1{color: #fff;
  background-image: -webkit-linear-gradient(92deg,#f35626,#feab3a);   
  -webkit-animation: hue 60s infinite linear;
  }
@-webkit-keyframes hue {
         from {-webkit-filter: hue-rotate(0deg)}
         to {-webkit-filter: hue-rotate(-360deg)}
        }
posted @ 2018-04-17 15:58  NatChen  阅读(446)  评论(0编辑  收藏  举报