Guest User

Untitled

a guest
Jul 18th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. // Sass preloader
  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. .loader_inner
  13. background-image: url("../img/pre.gif")
  14. background-size: cover
  15. background-repeat: no-repeat
  16. background-position: center center
  17. background-color: #fff
  18. height: 200px
  19. width: 200px
  20. left: 50%
  21. top: 50%
  22. transform: translate(-50%, -50%)
  23. position: absolute
  24. //End
  25.  
  26. //Js
  27. $(document).ready(function() {
  28. $(".loader_inner").fadeOut();
  29. $(".loader").delay(400).fadeOut("slow");
  30. })
  31. //End
Add Comment
Please, Sign In to add comment