Did you notice the bug at the end where there's invalid unicode put to the screen for a second until the full unicode character has been output? Making it work smoothly with unicode would be an interesting video.
Awesome! That's a cool trick to create a text-typing effect. Thanks for sharing. How to add a cursor at the end and after text typing is completed that cursor should blink.
This was a great tutorial! I had achieved this effect before but in a much more complicated and inefficient way.
Simple and effective 😀 Thank you!
Thanks!
You're welcome! Thank you for the Super Thanks 💪 appreciate it
this is a very easy and good way of doing a typewriter effect, good job and thanks!
I'm curious, is there is an advantage to doing this recursively vs. iteratively?
amazing thank you so much. how can i make it repeat alone ?
Thanks brother, may god bless you
where can I get 'Lexend' font? Is that a Google Font?
Love your tutorials, you should do more advanced front-end stuff
Did you notice the bug at the end where there's invalid unicode put to the screen for a second until the full unicode character has been output? Making it work smoothly with unicode would be an interesting video.
Awesome! That's a cool trick to create a text-typing effect. Thanks for sharing. How to add a cursor at the end and after text typing is completed that cursor should blink.
.text{
overflow: hidden;
border-right: .05em solid orange;
white-space: nowrap;
animation:
blink-caret .75s step-end infinite;
}
@keyframes blink-caret {
from,
to {
border-color: transparent
}
50% {
border-color: orange;
}
}
how can add this to a project of mine? i´m trying but it´s not working
thank you so much bro
thank you bro
i use opera gx. every time i type in there, there is this clacking sound. i like it. how to do that with js?
Add a keyboard event listener and have it trigger a sound. Tone.js is a good library to play sounds with javascript.
Cute. What if I want this effect to loop endlessly?
Just add typeTypeEffect(element,text) in if(text ===length-1)
Nice!!🌹👌👍🙏🖖🖖🖖
Doesn't work for me >.>
dope
Please how can I make the text infinitely repeat