标签:
<!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>
标签:
原文地址:http://www.cnblogs.com/hym881013/p/4659283.html