Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 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. background-position: cover;
  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.  
  27. $(window).load(function() {
  28. $("#loaderInner").fadeOut();
  29. $("#loader").delay(400).fadeOut("slow");
  30. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement