.top>div p{
overflow: hidden; //超出部分隐藏
font-size: 1.2rem; //大小
font-style: oblique; //倾斜
text-align: left;
line-height: 3rem; //垂直居中
background-image: -webkit-linear-gradient(left,green,yellow,pink, blue, red 25%,green 35%,
blue 50%,yellow 60%, red 75%, pink 85%,blue 100%); //括号内可添加多种颜色,多种百分比 线性渐变
-webkit-text-fill-color: transparent; //颜色填充 透明
-webkit-background-clip: text; //背景颜色绘制区域
animation: stream 15s infinite linear; //流动 15秒 循环 直线
background-size: 200% 100%;
}
@keyframes stream { //匀速流动
0% {
background-position: 0 0;
}
100% {
background-position: -100% 0;
}
}
效果如下,颜色从左到右一直在渐变,彩色鎏金就形成了~