Skip to content

Instantly share code, notes, and snippets.

@c0nn3r
Created April 10, 2015 01:14
Show Gist options
  • Save c0nn3r/ee68d3122bd9f0ae6847 to your computer and use it in GitHub Desktop.
Save c0nn3r/ee68d3122bd9f0ae6847 to your computer and use it in GitHub Desktop.
function type() {
text = str.slice(0, ++i);
if (text === str) return;
document.getElementById('typewriter').innerHTML = text;
var char = text.slice(-1);
if( char === '<' ) isTag = true;
if( char === '>' ) isTag = false;
if (isTag) return type();
setTimeout(type, 30);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment