typed.js help
by Harry Dry
HTML
<script src="https://cdn.rawgit.com/mattboldt/typed.js/master/js/typed.js"></script>
<!-The idea is I would like to some of the background colour to highlight on a time delay. So for example after maybe 2 seconds after all the text types out i would like the words 'ideas aren't original to highlight' thanks a lot. -->
<div id="typed-strings">
<p>Forget originality.^500 The term is overrated.^500<br>
Ideas aren't original. Ideas are made from stuff.^500<br>They are made from everything you have ever put inside your head.^800
</p>
</div>
<span id="typed"></span>
CSS
#typed {
font-family: crimson-text;
font-style: normal;
font-weight: 400;
color: #000000;
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
width: 100%;
}
JavaScript
$(function(){
$("#typed").typed({
stringsElement: $('#typed-strings'),
});
});