Playful_Finance_Loader
Eine verspielte und einfache Loader-Komponente für Finanz-/Bankschnittstellen mit coolen Neutraltönen und abgerundeten Elementen. Vollständig reaktionsschnell mit Unterstützung für den Dunkelmodus.
HTML-Code
<div class="flex items-center justify-center min-h-screen bg-gray-50 dark:bg-gray-900 p-4">
<div class="max-w-md w-full bg-white dark:bg-gray-800 rounded-3xl shadow-xl p-8 transition-colors duration-300">
<div class="flex flex-col items-center justify-center space-y-6">
<div class="relative w-24 h-24">
<!-- Outer ring -->
<div class="absolute inset-0 rounded-full border-4 border-dashed border-gray-200 dark:border-gray-700 animate-spin-slow opacity-75"></div>
<!-- Inner spinning circles -->
<div class="absolute inset-4 rounded-full border-4 border-solid border-blue-300 dark:border-blue-500 animate-spin opacity-90"></div>
<div class="absolute inset-4 rounded-full border-4 border-solid border-gray-400 dark:border-gray-600 animate-spin-reverse opacity-80"></div>
<!-- Center icon/text -->
<div class="absolute inset-0 flex items-center justify-center">
<svg class="w-12 h-12 text-blue-400 dark:text-blue-300" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M.636 12l.707-.707M12 21v-1m-6.364-1.636l.707-.707M3 12H2m1-.707l-.707-.707m0 0a2 2 0 112.828 2.828l-2.828-2.828zM12 12a3 3 0 100-6 3 3 0 000 6z"></path>
</svg>
</div>
</div>
<h2 class="text-xl sm:text-2xl font-semibold text-gray-700 dark:text-gray-200 text-center">
Processing Transaction...
</h2>
<p class="text-sm sm:text-base text-gray-500 dark:text-gray-400 text-center max-w-xs">
Please wait while we securely process your request. This may take a few moments.
</p>
<div class="w-full bg-gray-100 dark:bg-gray-700 rounded-full h-2.5 sm:h-3 overflow-hidden mt-4 shadow-inner">
<div class="bg-blue-400 dark:bg-blue-600 h-full rounded-full transition-all duration-1000 ease-in-out" style="width: 75%;">
</div>
</div>
</div>
</div>
<style>
@keyframes spin-slow {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
@keyframes spin-reverse {
from { transform: rotate(0deg); }
to { transform: rotate(-360deg); }
}
.animate-spin-slow {
animation: spin-slow 3s linear infinite;
}
.animate-spin-reverse {
animation: spin-reverse 1.5s linear infinite;
}
</style>
</div>
Verwandte Komponenten
Komponente für neumorphe Lader
Eine Neumorphic Loaders-Komponente mit einem analogen Farbschema, geeignet für einen Blog oder eine Content-Site, mit einem responsiven Design und Unterstützung für dunkle Themen.
Industrial_Rainbow_Healthcare_Loader
Eine Loader-Komponente im Industriestil für Anwendungen im Gesundheitswesen mit rohen Elementen, einem mehrfarbigen Regenbogenverlauf und voller Reaktionsfähigkeit mit Unterstützung des Dunkelmodus. Verwendet einfache CSS-Animationen für den Ladeeffekt.
Graustufen-Lade-Spinner
Eine einfache Loading-Spinner-Komponente mit Graustufenfarben und Mikrointeraktionsfokus.