Skip to content

Instantly share code, notes, and snippets.

@levenokk
Last active January 19, 2020 17:37
Show Gist options
  • Save levenokk/3baec4af361ae67b41b20b485d5c0489 to your computer and use it in GitHub Desktop.
Save levenokk/3baec4af361ae67b41b20b485d5c0489 to your computer and use it in GitHub Desktop.
preloader script
$(window).on('load', function () {
document.body.style.overflow = 'hidden';
setTimeout(() => {
$('.preloader').addClass('done')
document.body.style.overflow = '';
}, 1000);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment