Typewriting js is a javascript library that make the typewriter effect.
Usage
1 2 3 4 5 6 7 | const typeWriting = new TypeWriting({ targetElement : document.getElementsByClassName('terminal')[0], inputString : 'Hello, world.', typingInterval : 130, blinkInterval : '1s', cursorColor : '#00fd55', }, () => console.log('END')); |
Example:
Reply