css属性background-clip实现渐变颜色+动画效果

2024年08月08日 建站教程

css属性中有一个background-clip,用于设置绘图的背景,它的值可以是content-box,padding-box,border-box,text,其中text就是把颜色绘制到文字上,还有一个属性是text-fill-color,它也是设置对象中文字的填充颜色,和color作用一样,它的优先级比color大,还有就是他的兼容性不太好,只适用于谷歌。

//字体颜色渐变
.text{-webkit-background-clip: text;
    background-clip: text;
    background-image:linear-gradient(rgb(255,255,0),rgb(0,255,255));
    font-size: 20px;
    width:120px;
    -webkit-text-fill-color: transparent; 
}
<p class="text">1234567</p>
//颜色渐变+动画效果
text{-webkit-background-clip: text;
    width: 200%;
    background-clip: text;
    background-image:linear-gradient(-45deg,rgb(255,255,0),rgb(0,255,255));
    font-size: 20px;
    width:120px;
    animation: shine 2s infinite;
     background-blend-mode: hard-light; 
     background-size: 200%; 
     color: white;
     -webkit-text-fill-color: transparent; 
}
@keyframes shine {
    from {
        background-position: 100%;
    }
    to {
        background-position: 0;
    }
}
<p class="text">1234567</p>

本文链接:http://so.lmcjl.com/news/10278/

展开阅读全文
相关内容