WEBLEB
Home
Editor
Accedi
Pro
Italiano
English
Français
Español
Português
Deutsch
Italiano
हिंदी
Effetto testo 3D
998
ledoc
Apri nell'Editor
Pubblica il Tuo Codice
Consigliato
25 July 2025
Casella di registrazione di accesso 3D HTML CSS
14 March 2025
Sfera CSS Faux-3D /w Texture
1 December 2024
Pulsante di chiamata azione effetto passaggio del mouse
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.............