让文字发出炫酷的光效果

.colorful {
/* -webkit-mask-image: linear-gradient(to right, red, orange, yellow, green, cyan, blue, purple); */
background-image: linear-gradient(to right, red, orange, yellow, green, yellow, orange, red, orange, yellow, green, yellow, orange, red);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-background-size: 200% 100%;
animation: bgp 5s infinite linear;
}

@keyframes bgp{
0% {
background-position: 0 0;
}
100% {
background-position: -100% 0;
}
}

 

posted @ 2018-01-22 15:26  \面朝阳光/  阅读(130)  评论(0编辑  收藏  举报