搜索内容

给博客添加炫酷流光文字CSS代码

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

<div class="text-style-1">
小马博客
</div>

css代码

@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;
}

 

THE END
分享
二维码
打赏
分享到
扫码阅读
请作者喝杯咖啡
微信打赏
< 上一篇
多功能WordPress免费博客主题:酱茄Free主题
下一篇 >
小巧R@1n ReBirth激活工具v1.1中文版
目 录
文章目录
评论 1

  • 43263538
    43263538 2025-04-09 05:04

    👌