Advertisement
GochiSiyan

loading screen

Jan 6th, 2021
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. add_action('jnews_after_body',function (){
  2. ?>
  3. <div class="jnews_loading_screen"
  4. style="
  5. width: 100%;
  6. height: 100vh;
  7. z-index: 100;
  8. background: blue;
  9. position: fixed;
  10. left: 0;
  11. top:0;">
  12. </div>
  13. <script>
  14. (function ($){
  15. window.addEventListener('load',function (){
  16. $('.jnews_loading_screen').fadeOut(400)
  17. })
  18. })(jQuery)
  19. </script>
  20. <?php
  21. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement