Skip to content

Instantly share code, notes, and snippets.

@mohnish
Created March 31, 2015 20:10
Show Gist options
  • Select an option

  • Save mohnish/ea2137b975b2a3db392c to your computer and use it in GitHub Desktop.

Select an option

Save mohnish/ea2137b975b2a3db392c to your computer and use it in GitHub Desktop.
typewriter.js
var text = "mohnish".split('');
var i = 0;
var curr = text[i];
var input = document.querySelector('your-selector');
var id = setInterval(function() {
input.value = curr;
i++;
curr += text[i];
if (i == text.length) window.clearInterval(id);
}, 500);
@mohnish

mohnish commented Feb 4, 2016

Copy link
Copy Markdown
Author

looks something like this http://i.imgur.com/r2WQeHU.gif

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment