Skip to main content

CSS Loader Generator

Create beautiful CSS loading animations with pure CSS.
Choose from spinners, dots, bars, pulse, bounce, and ring styles.

4px
<div class="loader"></div>
.loader {
  width: 40px;
  height: 40px;
  border: 4px solid #e5e7eb;
  border-top: 4px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}