css 炫酷鎏金字体,颜色渐变

.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;
    }
}
效果如下,颜色从左到右一直在渐变,彩色鎏金就形成了~

你可能感兴趣的:(html,css,css,字体,html,颜色渐变,鎏金彩色字体)