document.ejs 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <base target="_blank" />
  5. <meta charset="UTF-8" />
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  7. <meta
  8. name="keywords"
  9. content="antd,umi,umijs,ant design,脚手架,布局, Ant Design,项目,Pro,admin,控制台,主页,开箱即用,中后台,解决方案,组件库"
  10. />
  11. <meta name="referrer" content="no-referrer">
  12. <meta http-equiv="pragma" content="no-cache">
  13. <meta http-equiv="Cache-Control" content="no-cache, must-revalidate">
  14. <meta http-equiv="expires" content="0">
  15. <meta
  16. name="viewport"
  17. content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
  18. />
  19. <title>念念不忘</title>
  20. <link rel="icon" href="/favicon.png" type="image/x-icon" />
  21. </head>
  22. <body>
  23. <noscript>Out-of-the-box mid-stage front/design solution!</noscript>
  24. <div id="root">
  25. <style>
  26. html,
  27. body,
  28. #root {
  29. height: 100%;
  30. margin: 0;
  31. padding: 0;
  32. }
  33. #root {
  34. background-image: url('/home_bg.png');
  35. background-repeat: no-repeat;
  36. background-size: 100% auto;
  37. }
  38. .page-loading-warp {
  39. padding: 98px;
  40. display: flex;
  41. justify-content: center;
  42. align-items: center;
  43. }
  44. .ant-spin {
  45. -webkit-box-sizing: border-box;
  46. box-sizing: border-box;
  47. margin: 0;
  48. padding: 0;
  49. color: rgba(0, 0, 0, 0.65);
  50. font-size: 14px;
  51. font-variant: tabular-nums;
  52. line-height: 1.5;
  53. list-style: none;
  54. -webkit-font-feature-settings: 'tnum';
  55. font-feature-settings: 'tnum';
  56. position: absolute;
  57. display: none;
  58. color: #1890ff;
  59. text-align: center;
  60. vertical-align: middle;
  61. opacity: 0;
  62. -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  63. transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  64. transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  65. transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86),
  66. -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  67. }
  68. .ant-spin-spinning {
  69. position: static;
  70. display: inline-block;
  71. opacity: 1;
  72. }
  73. .ant-spin-dot {
  74. position: relative;
  75. display: inline-block;
  76. font-size: 20px;
  77. width: 20px;
  78. height: 20px;
  79. }
  80. .ant-spin-dot-item {
  81. position: absolute;
  82. display: block;
  83. width: 9px;
  84. height: 9px;
  85. background-color: #1890ff;
  86. border-radius: 100%;
  87. -webkit-transform: scale(0.75);
  88. -ms-transform: scale(0.75);
  89. transform: scale(0.75);
  90. -webkit-transform-origin: 50% 50%;
  91. -ms-transform-origin: 50% 50%;
  92. transform-origin: 50% 50%;
  93. opacity: 0.3;
  94. -webkit-animation: antSpinMove 1s infinite linear alternate;
  95. animation: antSpinMove 1s infinite linear alternate;
  96. }
  97. .ant-spin-dot-item:nth-child(1) {
  98. top: 0;
  99. left: 0;
  100. }
  101. .ant-spin-dot-item:nth-child(2) {
  102. top: 0;
  103. right: 0;
  104. -webkit-animation-delay: 0.4s;
  105. animation-delay: 0.4s;
  106. }
  107. .ant-spin-dot-item:nth-child(3) {
  108. right: 0;
  109. bottom: 0;
  110. -webkit-animation-delay: 0.8s;
  111. animation-delay: 0.8s;
  112. }
  113. .ant-spin-dot-item:nth-child(4) {
  114. bottom: 0;
  115. left: 0;
  116. -webkit-animation-delay: 1.2s;
  117. animation-delay: 1.2s;
  118. }
  119. .ant-spin-dot-spin {
  120. -webkit-transform: rotate(45deg);
  121. -ms-transform: rotate(45deg);
  122. transform: rotate(45deg);
  123. -webkit-animation: antRotate 1.2s infinite linear;
  124. animation: antRotate 1.2s infinite linear;
  125. }
  126. .ant-spin-lg .ant-spin-dot {
  127. font-size: 32px;
  128. width: 32px;
  129. height: 32px;
  130. }
  131. .ant-spin-lg .ant-spin-dot i {
  132. width: 14px;
  133. height: 14px;
  134. }
  135. @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  136. .ant-spin-blur {
  137. background: #fff;
  138. opacity: 0.5;
  139. }
  140. }
  141. @-webkit-keyframes antSpinMove {
  142. to {
  143. opacity: 1;
  144. }
  145. }
  146. @keyframes antSpinMove {
  147. to {
  148. opacity: 1;
  149. }
  150. }
  151. @-webkit-keyframes antRotate {
  152. to {
  153. -webkit-transform: rotate(405deg);
  154. transform: rotate(405deg);
  155. }
  156. }
  157. @keyframes antRotate {
  158. to {
  159. -webkit-transform: rotate(405deg);
  160. transform: rotate(405deg);
  161. }
  162. }
  163. </style>
  164. <div
  165. style="
  166. display: flex;
  167. justify-content: center;
  168. align-items: center;
  169. flex-direction: column;
  170. min-height: 420px;
  171. height: 100%;
  172. "
  173. >
  174. <img src="/pro_icon.svg" alt="logo" width="256" />
  175. <div class="page-loading-warp">
  176. <div class="ant-spin ant-spin-lg ant-spin-spinning">
  177. <span class="ant-spin-dot ant-spin-dot-spin"
  178. ><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i
  179. ><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i
  180. ></span>
  181. </div>
  182. </div>
  183. <div style="display: flex; justify-content: center; align-items: center;">
  184. <img
  185. src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg"
  186. width="32"
  187. style="margin-right: 8px;"
  188. />
  189. Ant Design
  190. </div>
  191. </div>
  192. </div>
  193. </body>
  194. </html>