Guest User

Untitled

a guest
Nov 19th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. //main
  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. .loaderInner {
  14. background-image: url("../img/load.gif"); //Set gif img
  15. background-size: cover
  16. background-repeat: no-repeat;
  17. background-position: center center;
  18. background-color: #fff;
  19. height: 60px; //gif sixe
  20. width: 60px; // gif size
  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. });
Add Comment
Please, Sign In to add comment