index.html 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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 name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"/>
  9. <meta
  10. name="keywords"
  11. content="中星管理系统 基于 vue3 + CompositionAPI + typescript + vite3 + element plus 的后台开源免费管理系统!"
  12. />
  13. <meta
  14. name="description"
  15. content="中星管理系统 基于 vue3 + CompositionAPI + typescript + vite3 + element plus 的后台开源免费管理系统!"
  16. />
  17. <title>中星</title>
  18. <<<<<<< HEAD
  19. <script type="module" crossorigin src="/assets/index-d75b4e4d.js"></script>
  20. =======
  21. <script type="module" crossorigin src="/assets/index-c9fff140.js"></script>
  22. >>>>>>> 2589804fb89eb98fd6498c1ee41a354dcce32af3
  23. <link rel="stylesheet" href="/assets/index-ffdfed0a.css">
  24. </head>
  25. <body>
  26. <div id="app">
  27. <style>
  28. .app-loading {
  29. display: flex;
  30. width: 100%;
  31. height: 100%;
  32. justify-content: center;
  33. align-items: center;
  34. flex-direction: column;
  35. background: #f0f2f5;
  36. }
  37. .app-loading .app-loading-wrap {
  38. position: absolute;
  39. top: 50%;
  40. left: 50%;
  41. display: flex;
  42. transform: translate3d(-50%, -50%, 0);
  43. justify-content: center;
  44. align-items: center;
  45. flex-direction: column;
  46. }
  47. .app-loading .app-loading-title {
  48. margin-bottom: 30px;
  49. font-size: 20px;
  50. font-weight: bold;
  51. text-align: center;
  52. }
  53. .app-loading .app-loading-logo {
  54. width: 100px;
  55. margin: 0 auto 15px auto;
  56. animation: app-loading-logo 5s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  57. }
  58. @keyframes app-loading-logo {
  59. 0% {
  60. transform: rotate(0deg);
  61. }
  62. 100% {
  63. transform: rotate(360deg);
  64. }
  65. }
  66. .app-loading .app-loading-item {
  67. position: relative;
  68. display: inline-block;
  69. width: 60px;
  70. height: 60px;
  71. vertical-align: middle;
  72. border-radius: 50%;
  73. }
  74. .app-loading .app-loading-outter {
  75. position: absolute;
  76. width: 100%;
  77. height: 100%;
  78. border: 4px solid #2d8cf0;
  79. border-bottom: 0;
  80. border-left-color: transparent;
  81. border-radius: 50%;
  82. animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  83. }
  84. .app-loading .app-loading-inner {
  85. position: absolute;
  86. top: calc(50% - 20px);
  87. left: calc(50% - 20px);
  88. width: 40px;
  89. height: 40px;
  90. border: 4px solid #87bdff;
  91. border-right: 0;
  92. border-top-color: transparent;
  93. border-radius: 50%;
  94. animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  95. }
  96. /* @-webkit-keyframes loader-inner {
  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-inner {
  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. </style>
  117. <div class="app-loading">
  118. <div class="app-loading-wrap">
  119. <div class="app-loading-title">
  120. <img src="/zxlogo.png" class="app-loading-logo" alt="Logo" />
  121. <div class="app-loading-title">中星</div>
  122. </div>
  123. <!-- <div class="app-loading-item">
  124. <div class="app-loading-outter"></div>
  125. <div class="app-loading-inner"></div>
  126. </div> -->
  127. </div>
  128. </div>
  129. </div>
  130. </body>
  131. </html>