Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

222 righe
4.9 KiB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  6. <meta name="renderer" content="webkit" />
  7. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
  8. <link rel="stylesheet" type="text/css" media="print" href="<%= BASE_URL %>print-lock.css">
  9. <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
  10. <meta http-equiv="Expires" content="0">
  11. <meta http-equiv="Pragma" content="no-cache">
  12. <meta http-equiv="Cache-control" content="no-cache">
  13. <meta http-equiv="Cache" content="no-cache">
  14. <title>
  15. <%= webpackConfig.name %>
  16. </title>
  17. <!--[if lt IE 11]>
  18. <script>
  19. window.location.href = 'html/ie.html';
  20. </script>
  21. <![endif]-->
  22. <style>
  23. html,
  24. body,
  25. #app {
  26. height: 100%;
  27. margin: 0px;
  28. padding: 0px;
  29. }
  30. .chromeframe {
  31. margin: 0.2em 0;
  32. background: #ccc;
  33. color: #000;
  34. padding: 0.2em 0;
  35. }
  36. #loader-wrapper {
  37. position: fixed;
  38. top: 0;
  39. left: 0;
  40. width: 100%;
  41. height: 100%;
  42. z-index: 999999;
  43. }
  44. #loader {
  45. display: block;
  46. position: relative;
  47. left: 50%;
  48. top: 50%;
  49. width: 150px;
  50. height: 150px;
  51. margin: -75px 0 0 -75px;
  52. border-radius: 50%;
  53. border: 3px solid transparent;
  54. border-top-color: #fff;
  55. -webkit-animation: spin 2s linear infinite;
  56. -ms-animation: spin 2s linear infinite;
  57. -moz-animation: spin 2s linear infinite;
  58. -o-animation: spin 2s linear infinite;
  59. animation: spin 2s linear infinite;
  60. z-index: 1001;
  61. }
  62. #loader:before {
  63. content: '';
  64. position: absolute;
  65. top: 5px;
  66. left: 5px;
  67. right: 5px;
  68. bottom: 5px;
  69. border-radius: 50%;
  70. border: 3px solid transparent;
  71. border-top-color: #fff;
  72. -webkit-animation: spin 3s linear infinite;
  73. -moz-animation: spin 3s linear infinite;
  74. -o-animation: spin 3s linear infinite;
  75. -ms-animation: spin 3s linear infinite;
  76. animation: spin 3s linear infinite;
  77. }
  78. #loader:after {
  79. content: '';
  80. position: absolute;
  81. top: 15px;
  82. left: 15px;
  83. right: 15px;
  84. bottom: 15px;
  85. border-radius: 50%;
  86. border: 3px solid transparent;
  87. border-top-color: #fff;
  88. -moz-animation: spin 1.5s linear infinite;
  89. -o-animation: spin 1.5s linear infinite;
  90. -ms-animation: spin 1.5s linear infinite;
  91. -webkit-animation: spin 1.5s linear infinite;
  92. animation: spin 1.5s linear infinite;
  93. }
  94. @-webkit-keyframes spin {
  95. 0% {
  96. -webkit-transform: rotate(0deg);
  97. -ms-transform: rotate(0deg);
  98. transform: rotate(0deg);
  99. }
  100. 100% {
  101. -webkit-transform: rotate(360deg);
  102. -ms-transform: rotate(360deg);
  103. transform: rotate(360deg);
  104. }
  105. }
  106. @keyframes spin {
  107. 0% {
  108. -webkit-transform: rotate(0deg);
  109. -ms-transform: rotate(0deg);
  110. transform: rotate(0deg);
  111. }
  112. 100% {
  113. -webkit-transform: rotate(360deg);
  114. -ms-transform: rotate(360deg);
  115. transform: rotate(360deg);
  116. }
  117. }
  118. #loader-wrapper .loader-section {
  119. position: fixed;
  120. top: 0;
  121. width: 51%;
  122. height: 100%;
  123. background: #7171c6;
  124. z-index: 1000;
  125. -webkit-transform: translateX(0);
  126. -ms-transform: translateX(0);
  127. transform: translateX(0);
  128. }
  129. #loader-wrapper .loader-section.section-left {
  130. left: 0;
  131. }
  132. #loader-wrapper .loader-section.section-right {
  133. right: 0;
  134. }
  135. .loaded #loader-wrapper .loader-section.section-left {
  136. -webkit-transform: translateX(-100%);
  137. -ms-transform: translateX(-100%);
  138. transform: translateX(-100%);
  139. -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  140. transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  141. }
  142. .loaded #loader-wrapper .loader-section.section-right {
  143. -webkit-transform: translateX(100%);
  144. -ms-transform: translateX(100%);
  145. transform: translateX(100%);
  146. -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  147. transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  148. }
  149. .loaded #loader {
  150. opacity: 0;
  151. -webkit-transition: all 0.3s ease-out;
  152. transition: all 0.3s ease-out;
  153. }
  154. .loaded #loader-wrapper {
  155. visibility: hidden;
  156. -webkit-transform: translateY(-100%);
  157. -ms-transform: translateY(-100%);
  158. transform: translateY(-100%);
  159. -webkit-transition: all 0.3s 1s ease-out;
  160. transition: all 0.3s 1s ease-out;
  161. }
  162. .no-js #loader-wrapper {
  163. display: none;
  164. }
  165. .no-js h1 {
  166. color: #222222;
  167. }
  168. #loader-wrapper .load_title {
  169. font-family: 'Open Sans';
  170. color: #fff;
  171. font-size: 19px;
  172. width: 100%;
  173. text-align: center;
  174. z-index: 9999999999999;
  175. position: absolute;
  176. top: 60%;
  177. opacity: 1;
  178. line-height: 30px;
  179. }
  180. #loader-wrapper .load_title span {
  181. font-weight: normal;
  182. font-style: italic;
  183. font-size: 13px;
  184. color: #fff;
  185. opacity: 0.5;
  186. }
  187. </style>
  188. </head>
  189. <body>
  190. <div id="app">
  191. <div id="loader-wrapper">
  192. <div id="loader"></div>
  193. <div class="loader-section section-left"></div>
  194. <div class="loader-section section-right"></div>
  195. <div class="load_title">正在加载系统资源,请耐心等待</div>
  196. </div>
  197. </div>
  198. </body>
  199. </html>