Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Created April 23, 2019 15:14
Show Gist options
  • Save Farmatique/278c54a63441da346d3777eb1531cb58 to your computer and use it in GitHub Desktop.
Save Farmatique/278c54a63441da346d3777eb1531cb58 to your computer and use it in GitHub Desktop.
Animation for printed text js, type animation
function printed_el_text( el ){
var text = el.innerHTML,
i = 0,
__print = function (){
i++;
if( i <= text.length ){
el.innerHTML = text.substr(0, i);
setTimeout( __print, 20 );
}
};
__print();
};
printed_el_text( document.getElementById("type_text") );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment