Loading Generator is a free online tool that creates CSS loading animations and spinners. Choose from 8 animation types: spinner, dots, pulse, bars, ring, ripple, square, and orbit. Customize colors, sizes, and animation speeds, then copy the CSS and HTML code directly into your projects.
.loader {
width: 48px; height: 48px;
border: 4px solid #e5e7eb;
border-top-color: #6366f1;
border-radius: 50%;
animation: spin 1.00s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }<div class="loader"></div>Loading Generator is a free online tool that creates CSS loading animations and spinners. Choose from 8 animation types: spinner, dots, pulse, bars, ring, ripple, square, and orbit. Customize colors, sizes, and animation speeds, then copy the CSS and HTML code directly into your projects.
Choose an animation type
Select from spinner, dots, pulse, bars, ring, ripple, square, or orbit loading styles.
Customize the appearance
Set the color, size, and animation speed to match your design.
Preview the animation
Watch the live preview to see how your loading animation looks.
Copy the code
Copy the generated CSS and HTML code and paste it into your project.