Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. .loader
  2. background: none repeat scroll 0 0 #ffffff
  3. bottom: 0
  4. height: 100%
  5. left: 0
  6. position: fixed
  7. right: 0
  8. top: 0
  9. width: 100%
  10. z-index: 9999
  11.  
  12. .loader_inner
  13. background-image: url("../img/preloader.gif")
  14. background-repeat: no-repeat
  15. background-position: center center
  16. background-size: cover
  17. background-color: #fff
  18. height: 60px
  19. width: 60px
  20. margin-top: -30px
  21. margin-left: -30px
  22. left: 50%
  23. top: 50%
  24. position: absolute
  25.  
  26. //jQuery Page Preload
  27.  
  28. $(window).on('load', function() {
  29. $(".loader_inner").fadeOut();
  30. $(".loader").delay(400).fadeOut("slow");
  31. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement