Online CSS Loading Gallery
LoadingSpinnerCSS AnimationGallery
CSS loading animation gallery: 8 pure CSS animations including spinner, dots, bars, pulse, dual ring, skeleton, progress, typing with live preview and copy HTML/CSS, local processing.
CSS Loading Gallery8 styles
Spinner
<div class="loader-spinner"></div>
.loader-spinner {
width: 40px;
height: 40px;
border: 4px solid #e5e7eb;
border-top-color: #3b82f6;
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transf…Bouncing Dots
<div class="loader-dots"><span></span><span></span><span></span></div>
.loader-dots { display: flex; gap: 6px; }
.loader-dots span {
width: 10px; height: 10px;
background: #3b82f6; border-radius: 50%;
animation: bounce 0.6s infinite alternate;
}
.loader-dots span:n…Bars
<div class="loader-bars"><span></span><span></span><span></span><span></span></div>
.loader-bars { display: flex; gap: 4px; align-items: flex-end; height: 32px; }
.loader-bars span {
width: 6px; background: #3b82f6; border-radius: 3px;
animation: bar 0.8s ease-in-out infinite;
}
…Pulse
<div class="loader-pulse"></div>
.loader-pulse {
width: 40px; height: 40px;
background: #3b82f6; border-radius: 50%;
animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse {
0% { transform: scale(0.8); opacity: 1; }
…Dual Ring
<div class="loader-ring"></div>
.loader-ring {
width: 40px; height: 40px;
border: 4px solid transparent;
border-top-color: #3b82f6;
border-bottom-color: #8b5cf6;
border-radius: 50%;
animation: spin 1s linear infinite;
}
…Skeleton
<div class="loader-skeleton"><div class="sk-line"></div><div class="sk-line short"></div></div>
.loader-skeleton { width: 160px; }
.sk-line {
height: 12px; background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
background-size: 200% 100%;
border-radius: 6px; margin-bott…Progress Bar
<div class="loader-progress"><div class="loader-progress-bar"></div></div>
.loader-progress {
width: 160px; height: 6px;
background: #e5e7eb; border-radius: 999px; overflow: hidden;
}
.loader-progress-bar {
height: 100%; width: 40%;
background: #3b82f6; border-radius…Typing
<div class="loader-typing"><span></span><span></span><span></span></div>
.loader-typing { display:flex; gap:4px; align-items:center; }
.loader-typing span {
width:8px; height:8px; background:#9ca3af; border-radius:50%;
animation: typing 1s infinite;
}
.loader-typing sp…All processing is done locally, no upload
How to Use
- Paste any valid JSON, supports nesting, arrays and escapes
- Click Beautify to auto indent and format
- Click Minify to remove whitespace into one line
- All operations run locally for privacy
Related Tools
FAQ
Which animations are included?
Spinner, bouncing dots, bars, pulse, dual ring, skeleton, progress, typing — all pure CSS.
How to copy and use?
Each card can copy HTML, CSS or all, paste with @keyframes included.
Can I customize colors?
Yes, change #3b82f6 in the CSS to your theme color.
Will my data be uploaded?
No, all static CSS display and copy, local.