WEBLEB
Startseite
Editor
Anmelden
Pro
Deutsch
English
Français
Español
Português
Deutsch
Italiano
हिंदी
HTML
CSS
JS
Loading Screen
body { display: flex; align-items: center; justify-content: center; height: 100vh; margin: 0; background-color: #34495e; } .loader { display: flex; justify-content: space-between; width: 100px; } .circle { width: 20px; height: 20px; background-color: #fff; border-radius: 50%; animation: fade 1s infinite; } .circle:nth-child(1) { animation-delay: 0.2s; } .circle:nth-child(2) { animation-delay: 0.4s; } .circle:nth-child(3) { animation-delay: 0.6s; } @keyframes fade { 0%, 20%, 100% { opacity: 0.2; } 50% { opacity: 1; } }
/* Replace with your JS Code (Leave empty if not needed) */
Validating your code, please wait...
HTML
CSS
JS
Loading Screen
body { display: flex; align-items: center; justify-content: center; height: 100vh; margin: 0; background-color: #34495e; } .loader { display: flex; justify-content: space-between; width: 100px; } .circle { width: 20px; height: 20px; background-color: #fff; border-radius: 50%; animation: fade 1s infinite; } .circle:nth-child(1) { animation-delay: 0.2s; } .circle:nth-child(2) { animation-delay: 0.4s; } .circle:nth-child(3) { animation-delay: 0.6s; } @keyframes fade { 0%, 20%, 100% { opacity: 0.2; } 50% { opacity: 1; } }
/* Replace with your JS Code (Leave empty if not needed) */