WEBLEB
Accueil
Éditeur
Connexion
Pro
Français
English
Français
Español
Português
Deutsch
Italiano
हिंदी
CSS Loader Spinner : HTML simple
616
alejandrokundrah
Ouvrir dans l'éditeur
Publiez votre code
Recommandé
19 March 2025
Cases à cocher sabre laser Star Wars en CSS3 pur
19 October 2024
Site Web de portfolio de développeur HTML
10 July 2025
Exemple d'écran de chargement animé CSS HTML
HTML
Copy
CSS
Copy
.loader { position: relative; width: 120px; height: 90px; margin: 0 auto; } body{ display:flex; align-items:center; justify-content:center; min-height:100vh; background-color:#111111; } .loader:before { content: ""; position: absolute; bottom: 30px; left: 50px; height: 30px; width: 30px; border-radius: 50%; background: #cebebe; animation: loading-bounce 0.5s ease-in-out infinite alternate; } .loader:after { content: ""; position: absolute; right: 0; top: 0; height: 7px; width: 45px; border-radius: 4px; box-shadow: 0 5px 0 #f2f2f2, -35px 50px 0 #f2f2f2, -70px 95px 0 #f2f2f2; animation: loading-step 1s ease-in-out infinite; } @keyframes loading-bounce { 0% { transform: scale(1, 0.7); } 40% { transform: scale(0.8, 1.2); } 60% { transform: scale(1, 1); } 100% { bottom: 140px; } } @keyframes loading-step { 0% { box-shadow: 0 10px 0 rgba(0, 0, 0, 0), 0 10px 0 #f2f2f2, -35px 50px 0 #f2f2f2, -70px 90px 0 #f2f2f2; } 100% { box-shadow: 0 10px 0 #f2f2f2, -35px 50px 0 #f2f2f2, -70px 90px 0 #f2f2f2, -70px 90px 0 rgba(0, 0, 0, 0); } }
JS
Copy
/* Replace with your JS Code (Leave empty if not needed) */