Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

227 rader
6.2 KiB

  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="keywords"
  8. content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library"
  9. />
  10. <meta
  11. name="description"
  12. content="
  13. An out-of-box UI solution for enterprise applications as a React boilerplate."
  14. />
  15. <meta
  16. name="description"
  17. content="
  18. Out-of-the-box mid-stage front-end/design solution."
  19. />
  20. <meta
  21. name="viewport"
  22. content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
  23. />
  24. <title>Ant Design Pro</title>
  25. <link rel="icon" href="/favicon.ico" type="image/x-icon" />
  26. <!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> -->
  27. <link rel="stylesheet" href="/umi.ed4fa1d0.css" />
  28. <script>
  29. window.routerBase = "/";
  30. </script>
  31. <script>
  32. //! umi version: 3.5.39
  33. </script>
  34. </head>
  35. <body>
  36. <noscript>Out-of-the-box mid-stage front/design solution!</noscript>
  37. <div id="root">
  38. <style>
  39. html,
  40. body,
  41. #root {
  42. height: 100%;
  43. margin: 0;
  44. padding: 0;
  45. }
  46. #root {
  47. background-repeat: no-repeat;
  48. background-size: 100% auto;
  49. }
  50. .page-loading-warp {
  51. display: flex;
  52. align-items: center;
  53. justify-content: center;
  54. padding: 98px;
  55. }
  56. .ant-spin {
  57. position: absolute;
  58. display: none;
  59. -webkit-box-sizing: border-box;
  60. box-sizing: border-box;
  61. margin: 0;
  62. padding: 0;
  63. color: rgba(0, 0, 0, 0.65);
  64. color: #1890ff;
  65. font-size: 14px;
  66. font-variant: tabular-nums;
  67. line-height: 1.5;
  68. text-align: center;
  69. list-style: none;
  70. opacity: 0;
  71. -webkit-transition: -webkit-transform 0.3s
  72. cubic-bezier(0.78, 0.14, 0.15, 0.86);
  73. transition: -webkit-transform 0.3s
  74. cubic-bezier(0.78, 0.14, 0.15, 0.86);
  75. transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  76. transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86),
  77. -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  78. -webkit-font-feature-settings: "tnum";
  79. font-feature-settings: "tnum";
  80. }
  81. .ant-spin-spinning {
  82. position: static;
  83. display: inline-block;
  84. opacity: 1;
  85. }
  86. .ant-spin-dot {
  87. position: relative;
  88. display: inline-block;
  89. width: 20px;
  90. height: 20px;
  91. font-size: 20px;
  92. }
  93. .ant-spin-dot-item {
  94. position: absolute;
  95. display: block;
  96. width: 9px;
  97. height: 9px;
  98. background-color: #1890ff;
  99. border-radius: 100%;
  100. -webkit-transform: scale(0.75);
  101. -ms-transform: scale(0.75);
  102. transform: scale(0.75);
  103. -webkit-transform-origin: 50% 50%;
  104. -ms-transform-origin: 50% 50%;
  105. transform-origin: 50% 50%;
  106. opacity: 0.3;
  107. -webkit-animation: antspinmove 1s infinite linear alternate;
  108. animation: antSpinMove 1s infinite linear alternate;
  109. }
  110. .ant-spin-dot-item:nth-child(1) {
  111. top: 0;
  112. left: 0;
  113. }
  114. .ant-spin-dot-item:nth-child(2) {
  115. top: 0;
  116. right: 0;
  117. -webkit-animation-delay: 0.4s;
  118. animation-delay: 0.4s;
  119. }
  120. .ant-spin-dot-item:nth-child(3) {
  121. right: 0;
  122. bottom: 0;
  123. -webkit-animation-delay: 0.8s;
  124. animation-delay: 0.8s;
  125. }
  126. .ant-spin-dot-item:nth-child(4) {
  127. bottom: 0;
  128. left: 0;
  129. -webkit-animation-delay: 1.2s;
  130. animation-delay: 1.2s;
  131. }
  132. .ant-spin-dot-spin {
  133. -webkit-transform: rotate(45deg);
  134. -ms-transform: rotate(45deg);
  135. transform: rotate(45deg);
  136. -webkit-animation: antrotate 1.2s infinite linear;
  137. animation: antRotate 1.2s infinite linear;
  138. }
  139. .ant-spin-lg .ant-spin-dot {
  140. width: 32px;
  141. height: 32px;
  142. font-size: 32px;
  143. }
  144. .ant-spin-lg .ant-spin-dot i {
  145. width: 14px;
  146. height: 14px;
  147. }
  148. @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  149. .ant-spin-blur {
  150. background: #fff;
  151. opacity: 0.5;
  152. }
  153. }
  154. @-webkit-keyframes antSpinMove {
  155. to {
  156. opacity: 1;
  157. }
  158. }
  159. @keyframes antSpinMove {
  160. to {
  161. opacity: 1;
  162. }
  163. }
  164. @-webkit-keyframes antRotate {
  165. to {
  166. -webkit-transform: rotate(405deg);
  167. transform: rotate(405deg);
  168. }
  169. }
  170. @keyframes antRotate {
  171. to {
  172. -webkit-transform: rotate(405deg);
  173. transform: rotate(405deg);
  174. }
  175. }
  176. </style>
  177. <div
  178. style="
  179. display: flex;
  180. flex-direction: column;
  181. align-items: center;
  182. justify-content: center;
  183. height: 100%;
  184. min-height: 420px;
  185. "
  186. >
  187. <img src="/pro_icon.svg" alt="logo" width="256" />
  188. <div class="page-loading-warp">
  189. <div class="ant-spin ant-spin-lg ant-spin-spinning">
  190. <span class="ant-spin-dot ant-spin-dot-spin"
  191. ><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i
  192. ><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i
  193. ></span>
  194. </div>
  195. </div>
  196. <div
  197. style="display: flex; align-items: center; justify-content: center"
  198. >
  199. <img
  200. src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg"
  201. width="32"
  202. style="margin-right: 8px"
  203. />
  204. Ant Design
  205. </div>
  206. </div>
  207. </div>
  208. <script src="/umi.e6a0e2f1.js"></script>
  209. </body>
  210. </html>