loading.css 532 B

123456789101112131415161718192021222324252627282930313233
  1. .loading-container {
  2. position: absolute;
  3. top: 0;
  4. width: 100%;
  5. height: 100%;
  6. background-color: #eee;
  7. z-index: 1000;
  8. }
  9. .loading-circle {
  10. box-sizing: border-box;
  11. width: 80px;
  12. height: 80px;
  13. position: absolute;
  14. top: calc(50% - 40px);
  15. left: calc(50% - 40px);
  16. border-radius: 100%;
  17. border: 10px solid #ddd;
  18. border-top-color: #999;
  19. animation: spin 1s infinite linear;
  20. }
  21. @keyframes spin {
  22. 100% {
  23. transform: rotate(360deg);
  24. }
  25. }
  26. .loaded {
  27. top: -100%;
  28. transition: top 1s;
  29. transition-delay: 2s;
  30. }