Guest User

Untitled

a guest
Feb 18th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. $(window).load(function() {
  2.  
  3. $(".loader_inner").fadeOut();
  4. $(".loader").delay(400).fadeOut("slow");
  5.  
  6. $(".top_text h1").animated("fadeInDown", "fadeOutUp");
  7. $(".top_text p").animated("fadeInUp", "fadeOutDown");
  8.  
  9. });
  10.  
  11.  
  12. .loader
  13. background: none repeat scroll 0 0 #ffffff
  14. bottom: 0
  15. height: 100%
  16. left: 0
  17. position: fixed
  18. right: 0
  19. top: 0
  20. width: 100%
  21. z-index: 9999
  22.  
  23. .loader .loader_inner
  24. background-image: url("../img/loader.gif")
  25. background-size: cover
  26. background-repeat: no-repeat
  27. background-posirion: center center
  28. background-color: #fff
  29. height: 60px
  30. width: 60px
  31. margin-top: -30px
  32. margin-left: -30px
  33. left: 50%
  34. top: 50%
  35. position: absolute
  36.  
  37.  
  38. <div class="loader">
  39. <div class="loader_inner"></div>
  40. </div>
Add Comment
Please, Sign In to add comment