Skip to content

Instantly share code, notes, and snippets.

@Dexdot
Created December 18, 2017 15:41
Show Gist options
  • Select an option

  • Save Dexdot/6092ddf1acca195d97f9c231956cfb38 to your computer and use it in GitHub Desktop.

Select an option

Save Dexdot/6092ddf1acca195d97f9c231956cfb38 to your computer and use it in GitHub Desktop.
preloader script
window.onload = function() {
var el = document.querySelector('.preloader-wrap');
el.style.opacity = 1;
(function fade() {
if ((el.style.opacity -= 0.03) < 0) {
el.style.display = "none";
} else {
requestAnimationFrame(fade);
}
})();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment