index.html 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. <!DOCTYPE html>
  2. <html lang="en" id="htmlRoot">
  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="keywords" content="GIS数据支撑系统" />
  8. <meta name="description" content="GIS数据支撑系统" />
  9. <meta http-equiv="Expires" content="0" />
  10. <meta http-equiv="Cache-control" content="no-cache" />
  11. <meta http-equiv="Cache" content="no-cache" />
  12. <meta
  13. name="viewport"
  14. content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=0"
  15. />
  16. <title>GIS数据支撑系统</title>
  17. <link rel="icon" href="/favicon.ico" />
  18. <script src="http://127.0.0.1:8080/onemapV5.0/plugin/jquery/jquery-1.11.3.js"></script>
  19. </head>
  20. <body>
  21. <script>
  22. (() => {
  23. var htmlRoot = document.getElementById('htmlRoot');
  24. var theme = window.localStorage.getItem('__APP__DARK__MODE__');
  25. if (htmlRoot && theme) {
  26. htmlRoot.setAttribute('data-theme', theme);
  27. theme = htmlRoot = null;
  28. }
  29. })();
  30. </script>
  31. <div id="app">
  32. <style>
  33. html[data-theme='dark'] .app-loading {
  34. background-color: #2c344a;
  35. }
  36. html[data-theme='dark'] .app-loading .app-loading-title {
  37. color: rgba(255, 255, 255, 0.85);
  38. }
  39. .app-loading {
  40. display: flex;
  41. width: 100%;
  42. height: 100%;
  43. justify-content: center;
  44. align-items: center;
  45. flex-direction: column;
  46. background-color: #f4f7f9;
  47. }
  48. .app-loading .app-loading-wrap {
  49. position: absolute;
  50. top: 50%;
  51. left: 50%;
  52. display: flex;
  53. -webkit-transform: translate3d(-50%, -50%, 0);
  54. transform: translate3d(-50%, -50%, 0);
  55. justify-content: center;
  56. align-items: center;
  57. flex-direction: column;
  58. }
  59. .app-loading .dots {
  60. display: flex;
  61. padding: 98px;
  62. justify-content: center;
  63. align-items: center;
  64. }
  65. .app-loading .app-loading-title {
  66. display: flex;
  67. margin-top: 30px;
  68. font-size: 30px;
  69. color: rgba(0, 0, 0, 0.85);
  70. justify-content: center;
  71. align-items: center;
  72. }
  73. .app-loading .app-loading-logo {
  74. display: block;
  75. width: 90px;
  76. margin: 0 auto;
  77. margin-bottom: 20px;
  78. }
  79. .dot {
  80. position: relative;
  81. display: inline-block;
  82. width: 48px;
  83. height: 48px;
  84. margin-top: 30px;
  85. font-size: 32px;
  86. transform: rotate(45deg);
  87. box-sizing: border-box;
  88. animation: antRotate 1.2s infinite linear;
  89. }
  90. .dot i {
  91. position: absolute;
  92. display: block;
  93. width: 20px;
  94. height: 20px;
  95. background-color: #0065cc;
  96. border-radius: 100%;
  97. opacity: 0.3;
  98. transform: scale(0.75);
  99. animation: antSpinMove 1s infinite linear alternate;
  100. transform-origin: 50% 50%;
  101. }
  102. .dot i:nth-child(1) {
  103. top: 0;
  104. left: 0;
  105. }
  106. .dot i:nth-child(2) {
  107. top: 0;
  108. right: 0;
  109. -webkit-animation-delay: 0.4s;
  110. animation-delay: 0.4s;
  111. }
  112. .dot i:nth-child(3) {
  113. right: 0;
  114. bottom: 0;
  115. -webkit-animation-delay: 0.8s;
  116. animation-delay: 0.8s;
  117. }
  118. .dot i:nth-child(4) {
  119. bottom: 0;
  120. left: 0;
  121. -webkit-animation-delay: 1.2s;
  122. animation-delay: 1.2s;
  123. }
  124. @keyframes antRotate {
  125. to {
  126. -webkit-transform: rotate(405deg);
  127. transform: rotate(405deg);
  128. }
  129. }
  130. @-webkit-keyframes antRotate {
  131. to {
  132. -webkit-transform: rotate(405deg);
  133. transform: rotate(405deg);
  134. }
  135. }
  136. @keyframes antSpinMove {
  137. to {
  138. opacity: 1;
  139. }
  140. }
  141. @-webkit-keyframes antSpinMove {
  142. to {
  143. opacity: 1;
  144. }
  145. }
  146. </style>
  147. <!-- <div id="first-screen-loading" class="app-loading">
  148. <div class="app-loading-wrap"> -->
  149. <!-- <img src="/resource/img/logo.png" class="app-loading-logo" alt="Logo" /> -->
  150. <!-- <div class="app-loading-dots">
  151. <span class="dot dot-spin"><i></i><i></i><i></i><i></i></span>
  152. </div> -->
  153. <!-- <div class="app-loading-title"><%= title %></div> -->
  154. <!-- </div>
  155. </div> -->
  156. </div>
  157. <script type="module" src="/src/main.ts"></script>
  158. </body>
  159. </html>