Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <HTML>
  2. .load
  3.  
  4. {CSS}
  5. .load
  6. background: none repeat scroll 0 0 #ffffff
  7. position: fixed
  8. bottom: 0
  9. left: 0
  10. right: 0
  11. top: 0
  12. width: 100%
  13. height: 100%
  14. z-index: 9999
  15.  
  16. JS{}
  17. $(document).ready(function() {
  18.  
  19. function heightBlock () {
  20. $('.header').css('height', $(window).height());
  21. }
  22.  
  23. heightBlock();
  24.  
  25. $(window).resize(function () {
  26. heightBlock();
  27. });
  28.  
  29. });
  30.  
  31. $(window).load(function () {
  32. $(".load").delay(500).fadeOut("slow");
  33. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement