index.html 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  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 name="keywords" content="antd,umi,umijs,ant design,脚手架,布局, Ant Design,项目,Pro,admin,控制台,主页,开箱即用,中后台,解决方案,组件库" />
  7. <meta name="description" content="An out-of-box UI solution for enterprise applications as a React boilerplate." />
  8. <meta name="description" content="开箱即用的中台前端/设计解决方案。" />
  9. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
  10. <title>Ant Design Pro Blazor</title>
  11. <link rel="icon" href="favicon.ico" type="image/x-icon" />
  12. <base href="/" />
  13. <link href="_content/AntDesign/css/ant-design-blazor.css" rel="stylesheet" />
  14. <link href="_content/AntDesign.ProLayout/css/ant-design-pro-layout-blazor.css" rel="stylesheet" />
  15. <link href="./css/site.css" rel="stylesheet" />
  16. <link href="wispro.sp.webclient.styles.css" rel="stylesheet" />
  17. </head>
  18. <body>
  19. <noscript>Out-of-the-box mid-stage front/design solution!</noscript>
  20. <div id="app">
  21. <style>
  22. html,
  23. body,
  24. #app {
  25. height: 100%;
  26. margin: 0;
  27. padding: 0;
  28. }
  29. #app {
  30. background-repeat: no-repeat;
  31. background-size: 100% auto;
  32. }
  33. .page-loading-warp {
  34. padding: 98px;
  35. display: flex;
  36. justify-content: center;
  37. align-items: center;
  38. }
  39. .ant-spin {
  40. -webkit-box-sizing: border-box;
  41. box-sizing: border-box;
  42. margin: 0;
  43. padding: 0;
  44. color: rgba(0, 0, 0, 0.65);
  45. font-size: 14px;
  46. font-variant: tabular-nums;
  47. line-height: 1.5;
  48. list-style: none;
  49. -webkit-font-feature-settings: 'tnum';
  50. font-feature-settings: 'tnum';
  51. position: absolute;
  52. display: none;
  53. color: #1890ff;
  54. text-align: center;
  55. vertical-align: middle;
  56. opacity: 0;
  57. -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  58. transition: -webkit-transform 0.3s 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),
  131. (-ms-high-contrast: active) {
  132. .ant-spin-blur {
  133. background: #fff;
  134. opacity: 0.5;
  135. }
  136. }
  137. @-webkit-keyframes antSpinMove {
  138. to {
  139. opacity: 1;
  140. }
  141. }
  142. @keyframes antSpinMove {
  143. to {
  144. opacity: 1;
  145. }
  146. }
  147. @-webkit-keyframes antRotate {
  148. to {
  149. -webkit-transform: rotate(405deg);
  150. transform: rotate(405deg);
  151. }
  152. }
  153. @keyframes antRotate {
  154. to {
  155. -webkit-transform: rotate(405deg);
  156. transform: rotate(405deg);
  157. }
  158. }
  159. </style>
  160. <div style="
  161. display: flex;
  162. justify-content: center;
  163. align-items: center;
  164. flex-direction: column;
  165. min-height: 420px;
  166. height: 100%;
  167. ">
  168. <img src="./pro_icon.svg" alt="logo" width="256" />
  169. <div class="page-loading-warp">
  170. <div class="ant-spin ant-spin-lg ant-spin-spinning">
  171. <span class="ant-spin-dot ant-spin-dot-spin"><i class="ant-spin-dot-item"></i><i
  172. class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i><i
  173. class="ant-spin-dot-item"></i></span>
  174. </div>
  175. </div>
  176. <div style="display: flex; justify-content: center; align-items: center;">
  177. <img src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" width="32"
  178. style="margin-right: 8px;" />
  179. Ant Design Blazor
  180. </div>
  181. </div>
  182. </div>
  183. <script src="_content/AntDesign.Charts/g2plot.js"></script>
  184. <script src="_content/AntDesign/js/ant-design-blazor.js"></script>
  185. <script src="_content/AntDesign.Charts/ant-design-charts-blazor.js"></script>
  186. <script src="_framework/blazor.webassembly.js"></script>
  187. </body>
  188. </html>