Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
51
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. .loader_inner
  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. $(window).load(function() {
  26. $(".loader_inner").fadeOut();
  27. $(".loader").delay(400).fadeOut("slow");
  28. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement