index.html 6.9 KB

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