DanonymousCoder / Random-quotes-generator

A web app that generates random quotes
MIT License
4 stars 7 forks source link

Implement a typewriter effect for the quote display #6

Closed DanonymousCoder closed 1 week ago

DanonymousCoder commented 1 week ago

Add a typewriter effect so that when a new quote is generated, it types out the characters one by one, creating a cool animation effect.

DmysteriousCoder commented 1 week ago

Hi, can this issue be assigned to me?

DanonymousCoder commented 1 week ago

Sure, how would you solve this?

DmysteriousCoder commented 1 week ago

To create a typewriter effect for the quotes, you'll use JavaScript to display each character of a quote one by one. First, clear the previous quote, then loop through the new quote's characters, showing each one with a small delay using the setTimeout function. A recursive function is used to repeatedly call itself, adding one letter at a time to the display until the full quote is shown, creating the typewriter animation.

DanonymousCoder commented 1 week ago

Ok, fire on then 🔥

DanonymousCoder commented 1 week ago

Solved by PR #8