WEBLEB
Home
Editor
Accedi
Pro
Italiano
English
Français
Español
Português
Deutsch
Italiano
हिंदी
Sinfonia del burnout
209
ByBy.inc
Apri nell'Editor
Pubblica il Tuo Codice
Consigliato
22 July 2025
Spinner dell'icona di caricamento CSS
5 September 2025
Modello HTML per chatbot AI | Codice interfaccia chat
20 June 2025
Modello di dashboard di amministrazione HTML
HTML
Copy
CSS
Copy
* { margin: 0; padding: 0; box-sizing: border-box; } body { background-color: #000; display: flex; align-items: center; justify-content: center; height: 100vh; overflow: hidden; } .animation-container { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; align-items: center; justify-content: center; width: 100%; height: 50%; overflow: hidden; background-color: #000; } .shape { position: absolute; width: 300px; height: 300px; border-radius: 50%; opacity: 0; animation: burnout 10s infinite linear; } .shape:nth-child(1) { background-color: #ff5733; /* Cor inicial - Enérgica */ } .shape:nth-child(2) { background-color: #ff9800; /* Cor em mudança - Diminuição da energia */ } .shape:nth-child(3) { background-color: #00e676; /* Cor de calma - Esgotamento */ } @keyframes burnout { 0% { opacity: 0; transform: scale(0); } 20% { opacity: 1; transform: scale(1.2); } 40% { opacity: 0.8; transform: scale(1); } 60% { opacity: 0.6; transform: scale(0.8); } 80% { opacity: 0.4; transform: scale(1); } 100% { opacity: 0; transform: scale(0.2); } }
JS
Copy
/* Replace with your JS Code (Leave empty if not needed) */