WEBLEB
Inicio
Editora de código
Iniciar sesión
Pro
Español
English
Français
Español
Português
Deutsch
Italiano
हिंदी
Efecto de texto 3D
829
ledoc
Abrir en el editor
Publica tu código
Recomendado
3 January 2025
Un código de adonis1887
11 January 2024
Pantalla de Carga de Puntos
6 June 2023
Formulario de inicio de sesión/registro
HTML
Copy
W
A
V
E
S
CSS
Copy
.waveTextAnimated { margin-top: 0.6em; font-size: 50px; text-align: center; } .waveTextAnimated span { display: inline-block; -webkit-animation: wave-text 1s ease-in-out infinite; animation: wave-text 1s ease-in-out infinite; } .waveTextAnimated span:nth-of-type(1) { -webkit-animation-delay: 0s; animation-delay: 0s; } .waveTextAnimated span:nth-of-type(2) { -webkit-animation-delay: 0.1s; animation-delay: 0.1s; } .waveTextAnimated span:nth-of-type(3) { -webkit-animation-delay: 0.2s; animation-delay: 0.2s; } .waveTextAnimated span:nth-of-type(4) { -webkit-animation-delay: 0.3s; animation-delay: 0.3s; } .waveTextAnimated span:nth-of-type(5) { -webkit-animation-delay: 0.4s; animation-delay: 0.4s; } @-webkit-keyframes wave-text { 00% { transform: translateY(0em); } 60% { transform: translateY(-0.6em); } 100% { transform: translateY(0em); } } @keyframes wave-text { 00% { transform: translateY(0em); } 60% { transform: translateY(-0.6em); } 100% { transform: translateY(0em); } }
JS
Copy
/* Replace with your JS Code WAVES.............