Advertisement
Guest User

Untitled

a guest
Sep 24th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. @keyframes fadeOut {
  2. 100% {
  3. opacity: 0;
  4. visibility: hidden;
  5. }
  6. }
  7.  
  8. #loader {
  9. position: fixed;
  10. background: linear-gradient(#B31255, #7B0A67);
  11. z-index: 99;
  12. top: 0;
  13. left: 0;
  14. width: 100%;
  15. height: 100%;
  16. display: flex;
  17. justify-content: center;
  18. align-items: center;
  19. }
  20.  
  21. #loader.hidden{
  22. animation: fadeOut 1s;
  23. animation-fill-mode: both;
  24. }
  25.  
  26. .fillStroke {
  27. stroke-dasharray: 280;
  28. stroke-dashoffset: 280px;
  29. animation-duration: 3s;
  30. animation-name: animateStroke;
  31. animation-direction: alternate;
  32. animation-iteration-count: infinite;
  33. }
  34. .loader-rotation {
  35. animation: rotation 4s infinite linear;
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement