I have made some progress with this project.
Here is the link to what I have so far: http://codepen.io/tacrossman/pen/GJglH
However, my goal is to have the cursor blinking animation running after each new word (span) is written out.
When I attempt to add the following code:
.type:after {
content:"_";
opacity: 0;
animation: cursor 1s infinite;
}
It doesn't produce the desired effect. I suspect there might be a conflict in the animation since I am essentially trying to run an animation within something that is already animating.
If you require any further information, please do not hesitate to ask. Thank you!