Advertisement
Guest User

Untitled

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