document.ejs 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. <!DOCTYPE html>
  2. <html lang='zh-CN'>
  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. <title></title>
  11. <link rel="icon" href="<%= context.config.publicPath +'qclogo.png'%>" type="image/x-icon" />
  12. <script src="https://g.alicdn.com/dingding/dinglogin/0.0.5/ddLogin.js"></script>
  13. <!-- <meta name="referrer" content="never"> -->
  14. </head>
  15. <body>
  16. <noscript>Out-of-the-box mid-stage front/design solution!</noscript>
  17. <div id="root">
  18. <style>
  19. html,
  20. body,
  21. #root {
  22. height: 100%;
  23. margin: 0;
  24. padding: 0;
  25. }
  26. #root {
  27. /* background-image: url('<%= context.config.publicPath +"home_bg.png"%>'); */
  28. background-repeat: no-repeat;
  29. background-size: 100% auto;
  30. }
  31. .page-loading-warp {
  32. padding: 98px;
  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 cubic-bezier(0.78, 0.14, 0.15, 0.86);
  56. transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  57. transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  58. transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86),
  59. -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  60. }
  61. .ant-spin-spinning {
  62. position: static;
  63. display: inline-block;
  64. opacity: 1;
  65. }
  66. .ant-spin-dot {
  67. position: relative;
  68. display: inline-block;
  69. font-size: 20px;
  70. width: 20px;
  71. height: 20px;
  72. }
  73. .ant-spin-dot-item {
  74. position: absolute;
  75. display: block;
  76. width: 9px;
  77. height: 9px;
  78. background-color: #1890ff;
  79. border-radius: 100%;
  80. -webkit-transform: scale(0.75);
  81. -ms-transform: scale(0.75);
  82. transform: scale(0.75);
  83. -webkit-transform-origin: 50% 50%;
  84. -ms-transform-origin: 50% 50%;
  85. transform-origin: 50% 50%;
  86. opacity: 0.3;
  87. -webkit-animation: antSpinMove 1s infinite linear alternate;
  88. animation: antSpinMove 1s infinite linear alternate;
  89. }
  90. .ant-spin-dot-item:nth-child(1) {
  91. top: 0;
  92. left: 0;
  93. }
  94. .ant-spin-dot-item:nth-child(2) {
  95. top: 0;
  96. right: 0;
  97. -webkit-animation-delay: 0.4s;
  98. animation-delay: 0.4s;
  99. }
  100. .ant-spin-dot-item:nth-child(3) {
  101. right: 0;
  102. bottom: 0;
  103. -webkit-animation-delay: 0.8s;
  104. animation-delay: 0.8s;
  105. }
  106. .ant-spin-dot-item:nth-child(4) {
  107. bottom: 0;
  108. left: 0;
  109. -webkit-animation-delay: 1.2s;
  110. animation-delay: 1.2s;
  111. }
  112. .ant-spin-dot-spin {
  113. -webkit-transform: rotate(45deg);
  114. -ms-transform: rotate(45deg);
  115. transform: rotate(45deg);
  116. -webkit-animation: antRotate 1.2s infinite linear;
  117. animation: antRotate 1.2s infinite linear;
  118. }
  119. .ant-spin-lg .ant-spin-dot {
  120. font-size: 32px;
  121. width: 32px;
  122. height: 32px;
  123. }
  124. .ant-spin-lg .ant-spin-dot i {
  125. width: 14px;
  126. height: 14px;
  127. }
  128. @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  129. .ant-spin-blur {
  130. background: #fff;
  131. opacity: 0.5;
  132. }
  133. }
  134. @-webkit-keyframes antSpinMove {
  135. to {
  136. opacity: 1;
  137. }
  138. }
  139. @keyframes antSpinMove {
  140. to {
  141. opacity: 1;
  142. }
  143. }
  144. @-webkit-keyframes antRotate {
  145. to {
  146. -webkit-transform: rotate(405deg);
  147. transform: rotate(405deg);
  148. }
  149. }
  150. @keyframes antRotate {
  151. to {
  152. -webkit-transform: rotate(405deg);
  153. transform: rotate(405deg);
  154. }
  155. }
  156. </style>
  157. <div
  158. style="
  159. display: flex;
  160. justify-content: center;
  161. align-items: center;
  162. flex-direction: column;
  163. min-height: 420px;
  164. height: 100%;
  165. "
  166. >
  167. <!-- <img src="<%= context.config.publicPath +'qclogo.png'%>" alt="logo" width="256" /> -->
  168. <div class="page-loading-warp">
  169. <div class="ant-spin ant-spin-lg ant-spin-spinning">
  170. <span class="ant-spin-dot ant-spin-dot-spin"
  171. ><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i
  172. ><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i
  173. ></span>
  174. </div>
  175. </div>
  176. <div style="display: flex; justify-content: center; align-items: center">
  177. <img
  178. src="<%= context.config.publicPath +'qclogo.png'%>"
  179. width="32"
  180. style="margin-right: 8px"
  181. />
  182. 趣程投放工具
  183. </div>
  184. </div>
  185. </div>
  186. <!-- <link
  187. rel="stylesheet"
  188. href="<%= context.config.publicPath +'antd.dark.css'%>"
  189. type="text/css"
  190. id="dark"
  191. /> -->
  192. </body>
  193. </html>