⟳
Loading Spinner Generator
24px120px
0.25s3s
CSS Code
@keyframes spinner-circle { to { transform: rotate(360deg); } }
.spinner-circle {
width: 64px;
height: 64px;
border: 8px solid var(--color-border);
border-top-color: #6366f1;
border-radius: 50%;
animation: spinner-circle 1s linear infinite;
}