Advertisement
alshend

Loader

Jun 25th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.48 KB | None | 0 0
  1. <style>
  2. .loader-wrapper {
  3.   position: fixed;
  4.   top: 0;
  5.   bottom: 0;
  6.   left: 0;
  7.   right: 0;
  8.   background-color: rgba(255,255,255,.9);
  9.   z-index: 9999;
  10. }
  11. .loader {
  12.   position: absolute;
  13.   height: 150px;
  14.   width: 150px;
  15.   top: 50%;
  16.   left: 50%;
  17.   transform: translate(-50%, -50%);
  18.   background: url(../imgs/eclipse-loader.svg) no-repeat center center / cover;
  19. }
  20. </style>
  21. $(window).on('load', function(){
  22.         $('.loader-wrapper').delay(100).fadeOut().remove();
  23.     });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement