پیشنمایش زنده
کد HTML
<div class="loader">loading...</div>
کد CSS
@keyframes animate8345 {
0%,100% {
filter: hue-rotate(0deg);
}
50% {
filter: hue-rotate(360deg);
}
}
.loader {
color: rgb(0, 0, 0);
background: linear-gradient(to right, #2d60ec, #3ccfda);
font-size: 30px;
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
animation: animate8345 9s linear infinite;
font-weight: bold;
}