Files
sqlight/assets/module.css/loader.module.css
2025-05-17 02:41:36 +08:00

24 lines
277 B
CSS

@keyframes loader-fade {
0% {
opacity: 0;
}
75% {
opacity: 1;
}
}
.dot {
opacity: 0;
animation: loader-fade 1s;
animation-iteration-count: infinite;
&:nth-child(2) {
animation-delay: 0.2s;
}
&:nth-child(3) {
animation-delay: 0.4s;
}
}