Guest User

Untitled

a guest
Jan 17th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. .preloader
  2. position: fixed
  3. top: 0
  4. left: 0
  5. right: 0
  6. bottom: 0
  7. background-color: #fff /* change if the mask should have another color then white */
  8. z-index: 9 /* makes sure it stays on top */
  9. .preloader-inner
  10. width: 80px
  11. height: 80px
  12. background-size: cover
  13. position: absolute
  14. left: 50% /* centers the loading animation horizontally one the screen */
  15. top: 50% /* centers the loading animation vertically one the screen */
  16. background-image: url(../img/preloader.gif) /* path to your loading animation */
  17. background-repeat: no-repeat
  18. background-position: center
  19. margin: -30px 0 0 -30px /* is width and height divided by two */
  20.  
  21. $(window).on('load', function() { // makes sure the whole site is loaded
  22. $('.preloader-inner').fadeOut(); // will first fade out the loading animation
  23. $('.preloader').delay(350).fadeOut('slow'); // will fade out the white DIV that covers the website.
  24. })
Add Comment
Please, Sign In to add comment