index.html 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <!DOCTYPE html>
  2. <html lang="zh-cmn-Hans">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  7. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  8. <title>login for Upcloud Solution</title>
  9. <link rel="stylesheet" href="//at.alicdn.com/t/font_2436719_5x981id8c69.css">
  10. <!-- <script type="text/javascript" src="http://api.map.baidu.com/api?v=3.0&ak=vfZgs8WTqtPblvooiR0Qo4Zo2M0qxinS"></script> -->
  11. <style>
  12. #loading-mask {
  13. position: fixed;
  14. left: 0;
  15. top: 0;
  16. height: 100%;
  17. width: 100%;
  18. background: #fff;
  19. user-select: none;
  20. z-index: 9999;
  21. overflow: hidden;
  22. }
  23. .loading-wrapper {
  24. position: absolute;
  25. top: 50%;
  26. left: 50%;
  27. transform: translate(-50%, -100%);
  28. }
  29. .loading-dot {
  30. animation: antRotate 1.2s infinite linear;
  31. transform: rotate(45deg);
  32. position: relative;
  33. display: inline-block;
  34. font-size: 64px;
  35. width: 64px;
  36. height: 64px;
  37. box-sizing: border-box;
  38. }
  39. .loading-dot i {
  40. width: 22px;
  41. height: 22px;
  42. position: absolute;
  43. display: block;
  44. background-color: #1890ff;
  45. border-radius: 100%;
  46. transform: scale(0.75);
  47. transform-origin: 50% 50%;
  48. opacity: 0.3;
  49. animation: antSpinMove 1s infinite linear alternate;
  50. }
  51. .loading-dot i:nth-child(1) {
  52. top: 0;
  53. left: 0;
  54. }
  55. .loading-dot i:nth-child(2) {
  56. top: 0;
  57. right: 0;
  58. -webkit-animation-delay: 0.4s;
  59. animation-delay: 0.4s;
  60. }
  61. .loading-dot i:nth-child(3) {
  62. right: 0;
  63. bottom: 0;
  64. -webkit-animation-delay: 0.8s;
  65. animation-delay: 0.8s;
  66. }
  67. .loading-dot i:nth-child(4) {
  68. bottom: 0;
  69. left: 0;
  70. -webkit-animation-delay: 1.2s;
  71. animation-delay: 1.2s;
  72. }
  73. @keyframes antRotate {
  74. to {
  75. -webkit-transform: rotate(405deg);
  76. transform: rotate(405deg);
  77. }
  78. }
  79. @-webkit-keyframes antRotate {
  80. to {
  81. -webkit-transform: rotate(405deg);
  82. transform: rotate(405deg);
  83. }
  84. }
  85. @keyframes antSpinMove {
  86. to {
  87. opacity: 1;
  88. }
  89. }
  90. @-webkit-keyframes antSpinMove {
  91. to {
  92. opacity: 1;
  93. }
  94. }
  95. </style>
  96. <!-- require cdn assets css -->
  97. <% for (var i in htmlWebpackPlugin.options.cdn && htmlWebpackPlugin.options.cdn.css) { %>
  98. <link rel="stylesheet" href="<%= htmlWebpackPlugin.options.cdn.css[i] %>" />
  99. <% } %>
  100. </head>
  101. <body>
  102. <noscript>
  103. <strong>系统需要脚本支持,请勿限制</strong>
  104. </noscript>
  105. <div id="app">
  106. <div id="loading-mask">
  107. <div class="loading-wrapper">
  108. <img style="width:60px;" src="<%= BASE_URL %>load.gif" />
  109. </div>
  110. </div>
  111. </div>
  112. </div>
  113. <!-- require cdn assets js -->
  114. <% for (var i in htmlWebpackPlugin.options.cdn && htmlWebpackPlugin.options.cdn.js) { %>
  115. <script type="text/javascript" src="<%= htmlWebpackPlugin.options.cdn.js[i] %>"></script>
  116. <% } %>
  117. <!-- built files will be auto injected -->
  118. </body>
  119. </html>