index.html 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6. <meta name="renderer" content="webkit">
  7. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
  8. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  9. <title><%= webpackConfig.name %></title>
  10. <!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]-->
  11. <!-- 视频播放器库 -->
  12. <script src="https://cdn.jsdelivr.net/npm/hls.js@1.4.12/dist/hls.min.js"></script>
  13. <script src="https://cdn.jsdelivr.net/npm/flv.js@1.6.2/dist/flv.min.js"></script>
  14. <!-- 高德地图API配置(由 vue-amap 统一管理) -->
  15. <style>
  16. html,
  17. body,
  18. #app {
  19. height: 100%;
  20. margin: 0px;
  21. padding: 0px;
  22. }
  23. .chromeframe {
  24. margin: 0.2em 0;
  25. background: #ccc;
  26. color: #000;
  27. padding: 0.2em 0;
  28. }
  29. #loader-wrapper {
  30. position: fixed;
  31. top: 0;
  32. left: 0;
  33. width: 100%;
  34. height: 100%;
  35. z-index: 999999;
  36. background:
  37. radial-gradient(circle at 20% 30%, rgba(76, 175, 80, 0.4) 0%, transparent 60%),
  38. radial-gradient(circle at 80% 70%, rgba(102, 187, 106, 0.4) 0%, transparent 60%),
  39. radial-gradient(circle at 40% 80%, rgba(76, 175, 80, 0.3) 0%, transparent 50%),
  40. radial-gradient(circle at 60% 20%, rgba(129, 199, 132, 0.3) 0%, transparent 50%),
  41. linear-gradient(135deg, #2E7D32 0%, #4CAF50 25%, #66BB6A 50%, #4CAF50 75%, #388E3C 100%);
  42. overflow: hidden;
  43. }
  44. #loader-wrapper::before {
  45. content: '';
  46. position: absolute;
  47. top: 0;
  48. left: 0;
  49. right: 0;
  50. bottom: 0;
  51. background:
  52. repeating-linear-gradient(
  53. 45deg,
  54. transparent,
  55. transparent 3px,
  56. rgba(255, 255, 255, 0.02) 3px,
  57. rgba(255, 255, 255, 0.02) 6px
  58. );
  59. animation: shimmer 4s ease-in-out infinite;
  60. }
  61. #loader-wrapper::after {
  62. content: '';
  63. position: absolute;
  64. top: -25%;
  65. left: -25%;
  66. width: 150%;
  67. height: 150%;
  68. background: radial-gradient(
  69. circle,
  70. rgba(255, 255, 255, 0.08) 0%,
  71. rgba(255, 255, 255, 0.04) 30%,
  72. transparent 60%
  73. );
  74. animation: rotate 12s linear infinite;
  75. }
  76. #loader {
  77. display: block;
  78. position: relative;
  79. left: 50%;
  80. top: 50%;
  81. width: 150px;
  82. height: 150px;
  83. margin: -75px 0 0 -75px;
  84. border-radius: 50%;
  85. border: 4px solid transparent;
  86. border-top: 4px solid rgba(255, 255, 255, 0.9);
  87. border-right: 4px solid rgba(255, 255, 255, 0.3);
  88. border-bottom: 4px solid rgba(255, 255, 255, 0.1);
  89. border-left: 4px solid rgba(255, 255, 255, 0.6);
  90. box-shadow:
  91. 0 0 30px rgba(76, 175, 80, 0.4),
  92. inset 0 0 20px rgba(255, 255, 255, 0.1),
  93. 0 0 60px rgba(76, 175, 80, 0.2);
  94. backdrop-filter: blur(2px);
  95. -webkit-animation: spin 2s linear infinite;
  96. -ms-animation: spin 2s linear infinite;
  97. -moz-animation: spin 2s linear infinite;
  98. -o-animation: spin 2s linear infinite;
  99. animation: spin 2s linear infinite;
  100. z-index: 1001;
  101. }
  102. #loader:before {
  103. content: "";
  104. position: absolute;
  105. top: 5px;
  106. left: 5px;
  107. right: 5px;
  108. bottom: 5px;
  109. border-radius: 50%;
  110. border: 3px solid transparent;
  111. border-top-color: rgba(255, 255, 255, 0.7);
  112. -webkit-animation: spin 3s linear infinite;
  113. -moz-animation: spin 3s linear infinite;
  114. -o-animation: spin 3s linear infinite;
  115. -ms-animation: spin 3s linear infinite;
  116. animation: spin 3s linear infinite;
  117. }
  118. #loader:after {
  119. content: "";
  120. position: absolute;
  121. top: 15px;
  122. left: 15px;
  123. right: 15px;
  124. bottom: 15px;
  125. border-radius: 50%;
  126. border: 3px solid transparent;
  127. border-top-color: rgba(255, 255, 255, 0.5);
  128. -moz-animation: spin 1.5s linear infinite;
  129. -o-animation: spin 1.5s linear infinite;
  130. -ms-animation: spin 1.5s linear infinite;
  131. -webkit-animation: spin 1.5s linear infinite;
  132. animation: spin 1.5s linear infinite;
  133. }
  134. @-webkit-keyframes spin {
  135. 0% {
  136. -webkit-transform: rotate(0deg);
  137. -ms-transform: rotate(0deg);
  138. transform: rotate(0deg);
  139. }
  140. 100% {
  141. -webkit-transform: rotate(360deg);
  142. -ms-transform: rotate(360deg);
  143. transform: rotate(360deg);
  144. }
  145. }
  146. @keyframes spin {
  147. 0% {
  148. -webkit-transform: rotate(0deg);
  149. -ms-transform: rotate(0deg);
  150. transform: rotate(0deg);
  151. }
  152. 100% {
  153. -webkit-transform: rotate(360deg);
  154. -ms-transform: rotate(360deg);
  155. transform: rotate(360deg);
  156. }
  157. }
  158. @keyframes shimmer {
  159. 0%, 100% {
  160. opacity: 0.3;
  161. transform: translateX(-100%);
  162. }
  163. 50% {
  164. opacity: 0.8;
  165. transform: translateX(100%);
  166. }
  167. }
  168. @keyframes rotate {
  169. 0% {
  170. transform: rotate(0deg);
  171. }
  172. 100% {
  173. transform: rotate(360deg);
  174. }
  175. }
  176. @keyframes pulse {
  177. 0%, 100% {
  178. opacity: 0.6;
  179. transform: scale(1);
  180. }
  181. 50% {
  182. opacity: 1;
  183. transform: scale(1.05);
  184. }
  185. }
  186. .loaded #loader {
  187. opacity: 0;
  188. -webkit-transition: all 0.3s ease-out;
  189. transition: all 0.3s ease-out;
  190. }
  191. .loaded #loader-wrapper {
  192. visibility: hidden;
  193. -webkit-transform: translateY(-100%);
  194. -ms-transform: translateY(-100%);
  195. transform: translateY(-100%);
  196. -webkit-transition: all 0.3s 1s ease-out;
  197. transition: all 0.3s 1s ease-out;
  198. }
  199. .no-js #loader-wrapper {
  200. display: none;
  201. }
  202. .no-js h1 {
  203. color: #222222;
  204. }
  205. #loader-wrapper .load_title {
  206. font-family: 'Open Sans', 'Microsoft YaHei', sans-serif;
  207. color: #FFF;
  208. font-size: 20px;
  209. font-weight: 600;
  210. width: 100%;
  211. text-align: center;
  212. z-index: 9999999999999;
  213. position: absolute;
  214. top: 60%;
  215. opacity: 1;
  216. line-height: 30px;
  217. text-shadow:
  218. 0 2px 4px rgba(0, 0, 0, 0.3),
  219. 0 0 20px rgba(76, 175, 80, 0.6),
  220. 0 0 40px rgba(76, 175, 80, 0.3);
  221. letter-spacing: 1px;
  222. animation: pulse 2s ease-in-out infinite;
  223. }
  224. #loader-wrapper .load_title span {
  225. font-weight: normal;
  226. font-style: italic;
  227. font-size: 14px;
  228. color: rgba(255, 255, 255, 0.8);
  229. opacity: 0.7;
  230. display: block;
  231. margin-top: 8px;
  232. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  233. }
  234. </style>
  235. </head>
  236. <body>
  237. <div id="app">
  238. <div id="loader-wrapper">
  239. <div id="loader"></div>
  240. <div class="load_title">正在加载系统资源,请耐心等待</div>
  241. </div>
  242. </div>
  243. </body>
  244. </html>