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
603
ledoc
Abrir en el editor
Publica tu código
Recomendado
8 December 2024
Un código de smartfunction186
18 December 2024
Un código de slowcode552
22 August 2024
Una página de inicio de sesión sencilla
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.............