Skip to content

Instantly share code, notes, and snippets.

@nympheastudio
Created February 17, 2020 10:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nympheastudio/480572aa8634299288f108465cfbcda6 to your computer and use it in GitHub Desktop.
Save nympheastudio/480572aa8634299288f108465cfbcda6 to your computer and use it in GitHub Desktop.
add loader to website
//source : https://dev.to/atulcodex/how-to-add-loader-in-the-website-in-a-few-seconds-4k7n
let spinnerWrapper = document.querySelector('.spinner-wrapper');
window.addEventListener('load', function(){
spinnerWrapper.style.display= 'none';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment