WEBLEB
Home
Editor
Accedi
Pro
Italiano
English
Français
Español
Português
Deutsch
Italiano
हिंदी
Effetto testo 3D
604
ledoc
Apri nell'Editor
Pubblica il Tuo Codice
Consigliato
23 May 2025
Menu hamburger di accesso 3D
30 March 2025
Un codice di ytr3d3
7 November 2024
Effetto animazione passaggio del mouse sul testo
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.............