Template:炫彩字.css
跳到导航
跳到搜索
.flan{
display: inline-block;
font-size:50px;
background-clip: content-box;
color: #FF512F;
font-weight: 700;
text-shadow: 0 0 7px #ffd800;
background-image: linear-gradient(90deg, #ffd800 0%, #ff512f 100%, #fff);
animation: glow-animation 2s infinite linear;
}
@keyframes glow-animation{
0%{filter:hue-rotate(-360deg)}
100%{filter:hue-rotate(360deg)}
}