Skip to content

Instantly share code, notes, and snippets.

@RuslanAsadov
Last active December 5, 2018 14:15
Show Gist options
  • Save RuslanAsadov/800bc81d79e1ecca9929e6fc6d36d5f6 to your computer and use it in GitHub Desktop.
Save RuslanAsadov/800bc81d79e1ecca9929e6fc6d36d5f6 to your computer and use it in GitHub Desktop.
preloader_fade.js
//start preloader
document.body.onload = function() {
setTimeout(function() {
$('.preloader').fadeOut('slow');
}, 2000);
}
//end preloader
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment