使用animation达到文字变色

        之前看到网页文字、背景随时间变色,以为是通过js来实现的,之后在我研究了一下,是通过css的animation实现的,animation不止能变色,还能运动、变大小,形状估计也是可以变化。下面是我学习了animation变色后写的一个简单示例,比较简单:

<style>
.bianse {
animation: kekc_cn 10s linear 2s infinite;
color: #3374ad;
}
@keyframes kekc_cn {
0% {
color: #3374ad;
}
20% {
color: #9b27af;
}
40% {
color: #ff6666;
}
60% {
color: #fe9700;
}
80% {
color: #0db411;
}
100% {
color: #3374ad;
}
}
</style>
<div class="bianse">KEKC博客</div>

        kekc_cn 相当于绑定的一个事件之类的。

        示例:

KEKC博客
© 版权声明
THE END
喜欢就支持一下吧
点赞13 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称常用语 夸夸
夸夸
还有吗!没看够!
表情代码图片

    暂无评论内容