Advertisement
Guest User

Untitled

a guest
Apr 19th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1.  
  2. HTML :
  3. <div id="pageloader" style="opacity: 0; display: none;">
  4. <div class="sejoga"><img src="https://dev.zpixel.com.br/sejogacara/wp-content/themes/sejogacara/assets/img/logoLoad.png" alt=""></div>
  5. </div>
  6.  
  7. CSS:
  8.  
  9. #pageloader {
  10. height: 100vh;
  11. background-size: cover;
  12. background-image: url(../assets/img/newsLoad.png);
  13. background-repeat: no-repeat;
  14. background-position: bottom;
  15. justify-content: center;
  16. align-items: center;
  17. display: flex;
  18. opacity: 1;
  19. position: fixed;
  20. width: 100%;
  21. top: 0;
  22. left: 0;
  23. transition: .5s;
  24. z-index: 999999;
  25. background-color: white;
  26. }
  27.  
  28. JS:
  29.  
  30. <script>
  31. jQuery(function(){
  32. $(document).ready(function() {
  33. $(window).load(function() {
  34. $('#pageloader').css('opacity', '0').delay(350).hide(0);
  35. $('body').css('overflow', 'auto');
  36. });
  37. });
  38. })
  39. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement