Last active
December 10, 2015 04:18
-
-
Save voronianski/4380626 to your computer and use it in GitHub Desktop.
typewriter effect text with jquery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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