Created
December 7, 2012 19:06
-
-
Save bravoecho/4235611 to your computer and use it in GitHub Desktop.
typist jQuery plugin
This file contains 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
$.fn.typist = function (content) { | |
var current = []; | |
var remaining = content.split(/.{0}/); | |
var self = this; | |
return this.each(function () { | |
function typist () { | |
setTimeout(function () { | |
current.push(remaining.shift()); | |
self.val(current.join("")); | |
self.trigger("focus"); | |
if (remaining.length > 0) { typist(); } | |
}, 70); | |
} | |
typist(); | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment