WEBLEB
Início
Editor
Entrar
Pro
Português
English
Français
Español
Português
Deutsch
Italiano
हिंदी
Efeito de texto 3D
999
ledoc
Abrir no Editor
Publique Seu Código
Recomendado
21 July 2025
Página de destino de aluguel de carros
30 June 2025
dança de formas interativas
30 January 2025
Página de destino do Chef Pessoal
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.............