JSFiddle - React, Tailwind, and code Playground
by biotherm
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.6/typed.min.js"></script>
<div>
<span id="typed6"></span>
</div>
CSS
div {
height: 100px;
}
#typed6 {
white-space: pre;
}
JavaScript
var typed6 = new Typed(document.getElementById('typed6'), {
strings: [
'npm install^1000\n `installing components...`^1000\n `Fetching from source...`'],
typeSpeed: 40,
backSpeed: 0,
loop: true
});