A simple, lightweight Typewritting effect for your HTML elements.
- Add the following script to your HTML file:
<script src="https://cdn.jsdelivr.net/gh/r2hu1/typed-h/script.js"></script>
- Add the following element to your HTML file:
<h1 class="some-classname">Some text</h1>
- Intialize TypedH
const element = document.querySelector(".some-classname");
typedH({element,speed:200,reverced:false});