Toggle navigation
☰
HTML
CSS
Scripting
Database
<!doctype html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Tailwind CSS Dots Loader</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> <style> @keyframes dot-bounce { 0%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } } .animate-dot { animation: dot-bounce 1.4s infinite ease-in-out both; } </style> </head> <body class="bg-gray-50 flex justify-center items-center min-h-screen p-6 antialiased"> <div class="space-y-12 flex flex-col items-center"> <!-- Bouncing Dots --> <div class="flex gap-3"> <div class="h-4 w-4 bg-indigo-600 rounded-full animate-dot [animation-delay:-0.32s]"></div> <div class="h-4 w-4 bg-indigo-600 rounded-full animate-dot [animation-delay:-0.16s]"></div> <div class="h-4 w-4 bg-indigo-600 rounded-full animate-dot"></div> </div> <!-- Fading Dots --> <div class="flex gap-2"> <div class="h-2 w-2 bg-slate-900 rounded-full animate-pulse"></div> <div class="h-2 w-2 bg-slate-900 rounded-full animate-pulse [animation-delay:0.2s]"></div> <div class="h-2 w-2 bg-slate-900 rounded-full animate-pulse [animation-delay:0.4s]"></div> </div> <div class="text-center group"> <p class="text-[10px] font-black text-slate-400 uppercase tracking-[0.5em] group-hover:text-indigo-600 transition-colors">Awaiting Consensus</p> </div> </div> </body> </html>