CSS Spinner Generator

Generate CSS loading spinners and animations. Multiple styles and customization options.

Spinner Generator

Create animated loading spinners

Spinner Settings

💻CSS Code

width: 48px;
height: 48px;
border: 4px solid rgba(0, 0, 0, 0.1);
border-top-color: #667eea;
border-radius: 50%;
animation: spin 1s linear infinite;

@keyframes spin {
  to { transform: rotate(360deg); }
}

👁️Live Preview