index.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link rel="icon" href="/favicon.ico" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>后台管理系统</title>
  8. <style>
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. }
  13. .preload {
  14. display: flex;
  15. align-items: center;
  16. justify-content: center;
  17. height: 100vh;
  18. width: 100vw;
  19. }
  20. .circular {
  21. height: 42px;
  22. width: 42px;
  23. animation: loading-rotate 2s linear infinite;
  24. }
  25. .circular .path {
  26. animation: loading-dash 1.5s ease-in-out infinite;
  27. stroke-dasharray: 90, 150;
  28. stroke-dashoffset: 0;
  29. stroke-width: 2;
  30. stroke: #4073fa;
  31. stroke-linecap: round;
  32. }
  33. @keyframes loading-rotate {
  34. 100% {
  35. transform: rotate(1turn);
  36. }
  37. }
  38. @keyframes loading-dash {
  39. 0% {
  40. stroke-dasharray: 90, 150;
  41. stroke-dashoffset: -40px;
  42. }
  43. 100% {
  44. stroke-dasharray: 90, 150;
  45. stroke-dashoffset: -120px;
  46. }
  47. }
  48. </style>
  49. </head>
  50. <body>
  51. <div id="app">
  52. <div class="preload">
  53. <svg viewBox="25 25 50 50" class="circular">
  54. <circle cx="50" cy="50" r="20" fill="none" class="path"></circle>
  55. </svg>
  56. </div>
  57. </div>
  58. <script type="module" src="/src/main.ts"></script>
  59. </body>
  60. </html>