WEBLEB
Inicio
Editora de código
Iniciar sesión
Pro
Español
English
Français
Español
Português
Deutsch
Italiano
हिंदी
Sinfonía del agotamiento
22
ByBy.inc
Abrir en el editor
Publica tu código
Recomendado
5 January 2025
Página de inicio del complemento Matrix
28 June 2025
Barra de navegación del sitio web HTML y sección principal
25 May 2025
Mejor portafolio con inicio de sesión y publicaciones del sistema
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) */