CSS Loader Generator

Create CSS loading spinners and animations

Browser ProcessingYour data never leaves your browser

Loader Type

Appearance

Size48px
Border Width4px
Animation Speed1s
Primary Color
Secondary Color

Preview

CSS

.loader {
  width: 48px;
  height: 48px;
  border: 4px solid #e5e7eb;
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

HTML

<div class="loader"></div>