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
211
ByBy.inc
Abrir en el editor
Publica tu código
Recomendado
18 May 2024
Página principal del portafolio
1 December 2024
Efecto de desplazamiento del botón de llamada a la acción
9 September 2023
Efecto de desplazamiento del botón con CSS
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) */