index.html 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link rel="icon" href="/favicon.ico" />
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  8. <meta
  9. name="keywords"
  10. content="快速后台管理系统 基于 vue3 + CompositionAPI + typescript + vite3 + element plus 的后台开源免费管理系统!"
  11. />
  12. <meta
  13. name="description"
  14. content="快速后台管理系统 基于 vue3 + CompositionAPI + typescript + vite3 + element plus 的后台开源免费管理系统!"
  15. />
  16. <title>快速后台管理系统</title>
  17. <script type="module" crossorigin src="/assets/index-cae26250.js"></script>
  18. <link rel="stylesheet" href="/assets/index-123deb4f.css">
  19. </head>
  20. <body>
  21. <div id="app">
  22. <style>
  23. .app-loading {
  24. display: flex;
  25. width: 100%;
  26. height: 100%;
  27. justify-content: center;
  28. align-items: center;
  29. flex-direction: column;
  30. background: #f0f2f5;
  31. }
  32. .app-loading .app-loading-wrap {
  33. position: absolute;
  34. top: 50%;
  35. left: 50%;
  36. display: flex;
  37. transform: translate3d(-50%, -50%, 0);
  38. justify-content: center;
  39. align-items: center;
  40. flex-direction: column;
  41. }
  42. .app-loading .app-loading-title {
  43. margin-bottom: 30px;
  44. font-size: 20px;
  45. font-weight: bold;
  46. text-align: center;
  47. }
  48. .app-loading .app-loading-logo {
  49. width: 100px;
  50. margin: 0 auto 15px auto;
  51. }
  52. .app-loading .app-loading-item {
  53. position: relative;
  54. display: inline-block;
  55. width: 60px;
  56. height: 60px;
  57. vertical-align: middle;
  58. border-radius: 50%;
  59. }
  60. .app-loading .app-loading-outter {
  61. position: absolute;
  62. width: 100%;
  63. height: 100%;
  64. border: 4px solid #2d8cf0;
  65. border-bottom: 0;
  66. border-left-color: transparent;
  67. border-radius: 50%;
  68. animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  69. }
  70. .app-loading .app-loading-inner {
  71. position: absolute;
  72. top: calc(50% - 20px);
  73. left: calc(50% - 20px);
  74. width: 40px;
  75. height: 40px;
  76. border: 4px solid #87bdff;
  77. border-right: 0;
  78. border-top-color: transparent;
  79. border-radius: 50%;
  80. animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  81. }
  82. @keyframes loader-outter {
  83. 0% {
  84. transform: rotate(0deg);
  85. }
  86. 100% {
  87. transform: rotate(360deg);
  88. }
  89. }
  90. @keyframes loader-inner {
  91. 0% {
  92. transform: rotate(0deg);
  93. }
  94. 100% {
  95. transform: rotate(-360deg);
  96. }
  97. }
  98. </style>
  99. <div class="app-loading">
  100. <div class="app-loading-wrap">
  101. <div class="app-loading-title">
  102. <img src="/logo.gif" class="app-loading-logo" alt="Logo" />
  103. <div class="app-loading-title">快速后台管理系统</div>
  104. </div>
  105. <div class="app-loading-item">
  106. <div class="app-loading-outter"></div>
  107. <div class="app-loading-inner"></div>
  108. </div>
  109. </div>
  110. </div>
  111. </div>
  112. </body>
  113. </html>