document.ejs 6.4 KB

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