index.html 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <!DOCTYPE html>
  2. <html lang="en">
  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>ElementAdmin</title>
  8. <script type="module" crossorigin src="/assets/index-XQEkcq4y.js"></script>
  9. <link rel="modulepreload" crossorigin href="/assets/vue-chunks-COp0tDkU.js">
  10. <link rel="modulepreload" crossorigin href="/assets/element-plus-B-YefleC.js">
  11. <link rel="stylesheet" crossorigin href="/assets/index-C0OTuEXR.css">
  12. </head>
  13. <body>
  14. <div id="app">
  15. <style>
  16. .app-loading {
  17. display: -webkit-box;
  18. display: -webkit-flex;
  19. display: flex;
  20. width: 100%;
  21. height: 100%;
  22. -webkit-box-pack: center;
  23. -webkit-justify-content: center;
  24. justify-content: center;
  25. -webkit-box-align: center;
  26. -webkit-align-items: center;
  27. align-items: center;
  28. -webkit-box-orient: vertical;
  29. -webkit-box-direction: normal;
  30. -webkit-flex-direction: column;
  31. flex-direction: column;
  32. background: #f0f2f5;
  33. }
  34. .app-loading .app-loading-wrap {
  35. position: absolute;
  36. top: 50%;
  37. left: 50%;
  38. display: -webkit-box;
  39. display: -webkit-flex;
  40. display: flex;
  41. -webkit-transform: translate3d(-50%, -50%, 0);
  42. transform: translate3d(-50%, -50%, 0);
  43. -webkit-box-pack: center;
  44. -webkit-justify-content: center;
  45. justify-content: center;
  46. -webkit-box-align: center;
  47. -webkit-align-items: center;
  48. align-items: center;
  49. -webkit-box-orient: vertical;
  50. -webkit-box-direction: normal;
  51. -webkit-flex-direction: column;
  52. flex-direction: column;
  53. }
  54. .app-loading .app-loading-title {
  55. margin-bottom: 30px;
  56. font-size: 20px;
  57. font-weight: bold;
  58. text-align: center;
  59. }
  60. .app-loading .app-loading-logo {
  61. width: 100px;
  62. margin: 0 auto 15px auto;
  63. }
  64. .app-loading .app-loading-item {
  65. position: relative;
  66. display: inline-block;
  67. width: 60px;
  68. height: 60px;
  69. vertical-align: middle;
  70. border-radius: 50%;
  71. }
  72. .app-loading .app-loading-outter {
  73. position: absolute;
  74. width: 100%;
  75. height: 100%;
  76. border: 4px solid #2d8cf0;
  77. border-bottom: 0;
  78. border-left-color: transparent;
  79. border-radius: 50%;
  80. -webkit-animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  81. animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  82. }
  83. .app-loading .app-loading-inner {
  84. position: absolute;
  85. top: calc(50% - 20px);
  86. left: calc(50% - 20px);
  87. width: 40px;
  88. height: 40px;
  89. border: 4px solid #87bdff;
  90. border-right: 0;
  91. border-top-color: transparent;
  92. border-radius: 50%;
  93. -webkit-animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  94. animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  95. }
  96. @-webkit-keyframes loader-outter {
  97. 0% {
  98. -webkit-transform: rotate(0deg);
  99. transform: rotate(0deg);
  100. }
  101. 100% {
  102. -webkit-transform: rotate(360deg);
  103. transform: rotate(360deg);
  104. }
  105. }
  106. @keyframes loader-outter {
  107. 0% {
  108. -webkit-transform: rotate(0deg);
  109. transform: rotate(0deg);
  110. }
  111. 100% {
  112. -webkit-transform: rotate(360deg);
  113. transform: rotate(360deg);
  114. }
  115. }
  116. @-webkit-keyframes loader-inner {
  117. 0% {
  118. -webkit-transform: rotate(0deg);
  119. transform: rotate(0deg);
  120. }
  121. 100% {
  122. -webkit-transform: rotate(-360deg);
  123. transform: rotate(-360deg);
  124. }
  125. }
  126. @keyframes loader-inner {
  127. 0% {
  128. -webkit-transform: rotate(0deg);
  129. transform: rotate(0deg);
  130. }
  131. 100% {
  132. -webkit-transform: rotate(-360deg);
  133. transform: rotate(-360deg);
  134. }
  135. }
  136. </style>
  137. <div class="app-loading">
  138. <div class="app-loading-wrap">
  139. <div class="app-loading-title">
  140. <img src="/logo.png" class="app-loading-logo" alt="Logo" />
  141. <div class="app-loading-title">ElementAdmin</div>
  142. </div>
  143. <div class="app-loading-item">
  144. <div class="app-loading-outter"></div>
  145. <div class="app-loading-inner"></div>
  146. </div>
  147. </div>
  148. </div>
  149. </div>
  150. </body>
  151. </html>