index.html 3.7 KB

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