Skip to content

Instantly share code, notes, and snippets.

@voronianski
Last active December 10, 2015 04:18
Show Gist options
  • Save voronianski/4380626 to your computer and use it in GitHub Desktop.
Save voronianski/4380626 to your computer and use it in GitHub Desktop.
typewriter effect text with jquery
function typewriter(text, n) {
if (n < (text.length)) {
aboutBlock.html(text.substring(0, n+1));
n++;
setTimeout(function() {
myprint(text, n)
}, 100);
}
}
typewriter('custom printing text', 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment