网站首页 >> 建站技术 >> 正文
标题

炫酷流光文字CSS代码

kmwl520   2024-05-28 08:04:22   13℃   0
内容

彩色流光文字HTML代码,添加到要展示的位置,在添加css就行了。

<div class=”text-style-1″>
歆颜导航-123.q16k.com
</div>

</div>
<style>
@keyframes text-style-1 {
0% {
background-position: 0 0;
}
100% {
background-position: -100% 0;
}
}
.text-style-1 {
font-size: 30px;
background-image: linear-gradient(to right, red , yellow, green, yellow, red);
background-clip: text;
-webkit-background-clip: text;
background-size: 200% 100%;
color: transparent;
animation: text-style-1 2s infinite linear;
}
</style>


点评

本文暂无评论 - 欢迎您

请填写验证码