TypeIt is the most versatile JavaScript tool for creating typewriter effects on the planet. With a straightforward configuration, it allows you to type single or multiple strings that break lines, delete & replace each other, and it even handles strings that contain complex HTML.
Setup & Installation
script
tag (a CDN link is available).<script src="https://cdn.jsdelivr.net/npm/typeit@7.0.4/dist/typeit.min.js"></script>
new TypeIt("#element", {
strings: "This is my string!",
speed: 75,
loop: true
}).go();
0 Comments