index.html 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta
  7. name="viewport"
  8. content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
  9. />
  10. <!-- <meta http-equiv="Content-Security-Policy" content="default-src *; 'self'"> -->
  11. <link rel="icon" href="/favicon.png" type="image/x-icon" />
  12. <!--<link rel="shortcut icon" href="https://www.jq22.com/tx/16.png" type="image/x-icon" />-->
  13. <!-- <script src="https://d3js.org/d3.v6.min.js"></script> -->
  14. <script>
  15. const server = "localhost:8081";
  16. window.server = `http://${server}`;
  17. window.SOCKETSERVER = `ws://${server}`;
  18. </script>
  19. <link rel="stylesheet" href="/umi.b0d7586c.css" />
  20. <script>
  21. window.routerBase = "/";
  22. </script>
  23. <script>
  24. //! umi version: 3.5.41
  25. </script>
  26. </head>
  27. <body>
  28. <noscript>Sorry, we need js to run correctly!</noscript>
  29. <div id="root">
  30. <style>
  31. .page-loading-warp {
  32. padding: 120px;
  33. display: flex;
  34. justify-content: center;
  35. align-items: center;
  36. }
  37. .ant-spin {
  38. -webkit-box-sizing: border-box;
  39. box-sizing: border-box;
  40. margin: 0;
  41. padding: 0;
  42. color: rgba(0, 0, 0, 0.65);
  43. font-size: 14px;
  44. font-variant: tabular-nums;
  45. line-height: 1.5;
  46. list-style: none;
  47. -webkit-font-feature-settings: "tnum";
  48. font-feature-settings: "tnum";
  49. position: absolute;
  50. display: none;
  51. color: #1890ff;
  52. text-align: center;
  53. vertical-align: middle;
  54. opacity: 0;
  55. -webkit-transition: -webkit-transform 0.3s
  56. cubic-bezier(0.78, 0.14, 0.15, 0.86);
  57. transition: -webkit-transform 0.3s
  58. cubic-bezier(0.78, 0.14, 0.15, 0.86);
  59. transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  60. transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86),
  61. -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  62. }
  63. .ant-spin-spinning {
  64. position: static;
  65. display: inline-block;
  66. opacity: 1;
  67. }
  68. .ant-spin-dot {
  69. position: relative;
  70. display: inline-block;
  71. font-size: 20px;
  72. width: 20px;
  73. height: 20px;
  74. }
  75. .ant-spin-dot-item {
  76. position: absolute;
  77. display: block;
  78. width: 9px;
  79. height: 9px;
  80. background-color: #1890ff;
  81. border-radius: 100%;
  82. -webkit-transform: scale(0.75);
  83. -ms-transform: scale(0.75);
  84. transform: scale(0.75);
  85. -webkit-transform-origin: 50% 50%;
  86. -ms-transform-origin: 50% 50%;
  87. transform-origin: 50% 50%;
  88. opacity: 0.3;
  89. -webkit-animation: antSpinMove 1s infinite linear alternate;
  90. animation: antSpinMove 1s infinite linear alternate;
  91. }
  92. .ant-spin-dot-item:nth-child(1) {
  93. top: 0;
  94. left: 0;
  95. }
  96. .ant-spin-dot-item:nth-child(2) {
  97. top: 0;
  98. right: 0;
  99. -webkit-animation-delay: 0.4s;
  100. animation-delay: 0.4s;
  101. }
  102. .ant-spin-dot-item:nth-child(3) {
  103. right: 0;
  104. bottom: 0;
  105. -webkit-animation-delay: 0.8s;
  106. animation-delay: 0.8s;
  107. }
  108. .ant-spin-dot-item:nth-child(4) {
  109. bottom: 0;
  110. left: 0;
  111. -webkit-animation-delay: 1.2s;
  112. animation-delay: 1.2s;
  113. }
  114. .ant-spin-dot-spin {
  115. -webkit-transform: rotate(45deg);
  116. -ms-transform: rotate(45deg);
  117. transform: rotate(45deg);
  118. -webkit-animation: antRotate 1.2s infinite linear;
  119. animation: antRotate 1.2s infinite linear;
  120. }
  121. .ant-spin-lg .ant-spin-dot {
  122. font-size: 32px;
  123. width: 32px;
  124. height: 32px;
  125. }
  126. .ant-spin-lg .ant-spin-dot i {
  127. width: 14px;
  128. height: 14px;
  129. }
  130. @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  131. .ant-spin-blur {
  132. background: #fff;
  133. opacity: 0.5;
  134. }
  135. }
  136. @-webkit-keyframes antSpinMove {
  137. to {
  138. opacity: 1;
  139. }
  140. }
  141. @keyframes antSpinMove {
  142. to {
  143. opacity: 1;
  144. }
  145. }
  146. @-webkit-keyframes antRotate {
  147. to {
  148. -webkit-transform: rotate(405deg);
  149. transform: rotate(405deg);
  150. }
  151. }
  152. @keyframes antRotate {
  153. to {
  154. -webkit-transform: rotate(405deg);
  155. transform: rotate(405deg);
  156. }
  157. }
  158. </style>
  159. <div class="page-loading-warp">
  160. <div class="ant-spin ant-spin-lg ant-spin-spinning">
  161. <span class="ant-spin-dot ant-spin-dot-spin"
  162. ><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i
  163. ><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i
  164. ></span>
  165. </div>
  166. </div>
  167. </div>
  168. <script src="/umi.45b4aa5e.js"></script>
  169. </body>
  170. </html>