css字体颜色动画

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<style>
  .site__title {
    color: #f35626;
    background-image: -webkit-linear-gradient(92deg, #20b0f3, #A2E5FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: hue 10s infinite linear;
  }
  @-webkit-keyframes hue {
    from {
      -webkit-filter: hue-rotate(0deg);
    }
    50% {
      -webkit-filter: hue-rotate(-180deg);
    }
    to{
      -webkit-filter: hue-rotate(0deg);
    }
  }
</style>
</head>
<body>
  <h1 class="site__title mega">css字体动画</h1>
</body>
</html>

posted @ 2015-07-19 18:48  人塰ー粒渣  阅读(466)  评论(0编辑  收藏  举报