console
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
h1 {
background: -webkit-linear-gradient(
135deg,
#0077ff,
#ff6ac6 25%,
#33afce 50%,
#7667ff 55%,
#d2d439 60%,
#2ce0d1 80%,
#ff6384 95%,
#00ffcc
);
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
-webkit-background-size: 200% 100%;
-webkit-animation: flowCss 12s infinite linear;
}
@-webkit-keyframes flowCss {
0% {
background-position: 0 0;
}
100% {
background-position: -400% 0;
}
}
h1:hover {
-webkit-animation: flowCss 4s infinite linear;
}
</style>
</head>
<body>
<h1>平安喜乐呀健健康康</h1>
</body>
</html>