WEBLEB
Accueil
Éditeur
Connexion
Pro
Français
English
Français
Español
Português
Deutsch
Italiano
हिंदी
Indicateur de chargement pulsé CSS
3962
loader7
Ouvrir dans l'éditeur
Video
Publiez votre code
4
Recommandé
17 May 2024
Accueil animé et formulaire de connexion à l'inscription
2 June 2025
Un code par youssefdahroug2005
16 January 2026
Jeu de moteur Funkin' Kade du vendredi soir
HTML
Copy
Loading Screen
CSS
Copy
body{ background-color: #2ecc71; display: flex; justify-content: center; align-items: center; height: 100vh; overflow: hidden; margin: 0; } .loader{ height: 50px; width: 50px; border:8px solid #fff; border-radius: 50%; animation: pulse 1s ease-in-out infinite; } @keyframes pulse{ 0%,100%{transform: scale(1);} 50%{transform: scale(1.2);} }
JS
Copy
/* Replace with your JS Code (Leave empty if not needed) */