DEV Community

Discussion on: Today I have learned to wave the form Input

Collapse
 
adam_cyclones profile image
Adam Crockett 🌀 • Edited

Nice and simple effect 👍
Here's a one liner because everyone's giving them out these days.

Array.from("hello world", (letter, i) => `<span style="transition-delay:${i * 50}ms">${letter}</span>`).join('');
Enter fullscreen mode Exit fullscreen mode