Guest User

Untitled

a guest
Feb 21st, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 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. .loaderInner
  13. background-image: url("../img/load.gif")
  14. background-repeat: no-repeat
  15. background-position: center center
  16. background-color: #fff
  17. height: 60px
  18. width: 60px
  19. margin-top: -30px
  20. margin-left: -30px
  21. left: 50%
  22. top: 50%
  23. position: absolute
  24.  
  25.  
  26. $(window).load(function() {
  27. $("#loaderInner").fadeOut();
  28. $("#loader").delay(400).fadeOut("slow");
  29. });
Add Comment
Please, Sign In to add comment