Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title></title>
  4.  
  5. <style type="text/css">
  6. @keyframes loading{
  7. 0%{transform:rotate(0deg)}
  8. 100%{transform:rotate(360deg)}
  9. }
  10.  
  11. #loading{
  12. width: 65px;
  13. height: 65px;
  14. position: absolute;
  15. top: 50%;
  16. left: 50%;
  17. margin: auto;
  18. animation: loading 1.2s linear infinite;
  19. background: rgba(244, 244, 244, 0.69);
  20. box-shadow: 0 0 0 10000px rgba(10, 10, 10, 0.69);
  21. opacity: 1;
  22. pointer-events: none;
  23. z-index: 2999;
  24. background-color: #dedede;
  25. }
  26. </style>
  27.  
  28. </head>
  29. <body>
  30. <div id="loading"></div>
  31.  
  32. <div style="overflow-y: auto; height: 100%;">
  33. <div style="height:800px; background:rgba(100, 100, 244, 0.69);"></div>
  34. </div>
  35.  
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement