SJA APS系统web前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

235 lines
5.7 KiB

4 years ago
  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="icon" href="<%= BASE_URL %>favicon.ico">
  9. <title><%= webpackConfig.name %> - go-admin</title>
  10. <meta name="keywords" content="权限管理系统">
  11. <meta name="description" content="前后端分离管理系统">
  12. <style>
  13. html,
  14. body,
  15. #app {
  16. height: 100%;
  17. margin: 0px;
  18. padding: 0px;
  19. }
  20. .chromeframe {
  21. margin: 0.2em 0;
  22. background: #ccc;
  23. color: #000;
  24. padding: 0.2em 0;
  25. }
  26. #loader-wrapper {
  27. position: fixed;
  28. top: 0;
  29. left: 0;
  30. width: 100%;
  31. height: 100%;
  32. z-index: 999999;
  33. }
  34. #loader {
  35. display: block;
  36. position: relative;
  37. left: 50%;
  38. top: 50%;
  39. width: 150px;
  40. height: 150px;
  41. margin: -75px 0 0 -75px;
  42. border-radius: 50%;
  43. border: 3px solid transparent;
  44. border-top-color: #FFF;
  45. -webkit-animation: spin 2s linear infinite;
  46. -ms-animation: spin 2s linear infinite;
  47. -moz-animation: spin 2s linear infinite;
  48. -o-animation: spin 2s linear infinite;
  49. animation: spin 2s linear infinite;
  50. z-index: 1001;
  51. }
  52. #loader:before {
  53. content: "";
  54. position: absolute;
  55. top: 5px;
  56. left: 5px;
  57. right: 5px;
  58. bottom: 5px;
  59. border-radius: 50%;
  60. border: 3px solid transparent;
  61. border-top-color: #FFF;
  62. -webkit-animation: spin 3s linear infinite;
  63. -moz-animation: spin 3s linear infinite;
  64. -o-animation: spin 3s linear infinite;
  65. -ms-animation: spin 3s linear infinite;
  66. animation: spin 3s linear infinite;
  67. }
  68. #loader:after {
  69. content: "";
  70. position: absolute;
  71. top: 15px;
  72. left: 15px;
  73. right: 15px;
  74. bottom: 15px;
  75. border-radius: 50%;
  76. border: 3px solid transparent;
  77. border-top-color: #FFF;
  78. -moz-animation: spin 1.5s linear infinite;
  79. -o-animation: spin 1.5s linear infinite;
  80. -ms-animation: spin 1.5s linear infinite;
  81. -webkit-animation: spin 1.5s linear infinite;
  82. animation: spin 1.5s linear infinite;
  83. }
  84. @-webkit-keyframes spin {
  85. 0% {
  86. -webkit-transform: rotate(0deg);
  87. -ms-transform: rotate(0deg);
  88. transform: rotate(0deg);
  89. }
  90. 100% {
  91. -webkit-transform: rotate(360deg);
  92. -ms-transform: rotate(360deg);
  93. transform: rotate(360deg);
  94. }
  95. }
  96. @keyframes spin {
  97. 0% {
  98. -webkit-transform: rotate(0deg);
  99. -ms-transform: rotate(0deg);
  100. transform: rotate(0deg);
  101. }
  102. 100% {
  103. -webkit-transform: rotate(360deg);
  104. -ms-transform: rotate(360deg);
  105. transform: rotate(360deg);
  106. }
  107. }
  108. #loader-wrapper .loader-section {
  109. position: fixed;
  110. top: 0;
  111. width: 51%;
  112. height: 100%;
  113. background: #7171C6;
  114. z-index: 1000;
  115. -webkit-transform: translateX(0);
  116. -ms-transform: translateX(0);
  117. transform: translateX(0);
  118. }
  119. #loader-wrapper .loader-section.section-left {
  120. left: 0;
  121. }
  122. #loader-wrapper .loader-section.section-right {
  123. right: 0;
  124. }
  125. .loaded #loader-wrapper .loader-section.section-left {
  126. -webkit-transform: translateX(-100%);
  127. -ms-transform: translateX(-100%);
  128. transform: translateX(-100%);
  129. -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  130. transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  131. }
  132. .loaded #loader-wrapper .loader-section.section-right {
  133. -webkit-transform: translateX(100%);
  134. -ms-transform: translateX(100%);
  135. transform: translateX(100%);
  136. -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  137. transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  138. }
  139. .loaded #loader {
  140. opacity: 0;
  141. -webkit-transition: all 0.3s ease-out;
  142. transition: all 0.3s ease-out;
  143. }
  144. .loaded #loader-wrapper {
  145. visibility: hidden;
  146. -webkit-transform: translateY(-100%);
  147. -ms-transform: translateY(-100%);
  148. transform: translateY(-100%);
  149. -webkit-transition: all 0.3s 1s ease-out;
  150. transition: all 0.3s 1s ease-out;
  151. }
  152. .no-js #loader-wrapper {
  153. display: none;
  154. }
  155. .no-js h1 {
  156. color: #222222;
  157. }
  158. #loader-wrapper .load_title {
  159. /* font-family: 'Open Sans'; */
  160. font-family: 'Noto Sans SC';
  161. color: #FFF;
  162. font-size: 19px;
  163. width: 100%;
  164. text-align: center;
  165. z-index: 9999999999999;
  166. position: absolute;
  167. top: 60%;
  168. opacity: 1;
  169. line-height: 30px;
  170. }
  171. #loader-wrapper .load_title span {
  172. font-weight: normal;
  173. font-style: italic;
  174. font-size: 13px;
  175. color: #FFF;
  176. opacity: 0.5;
  177. }
  178. ::-webkit-scrollbar {
  179. width: 0 !important;
  180. }
  181. ::-webkit-scrollbar {
  182. width: 0 !important;height: 0;
  183. }
  184. /* 滚动槽 */
  185. ::-webkit-scrollbar-track {
  186. /* -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.3); */
  187. border-radius: 0px;
  188. }
  189. /* 滚动条滑块 */
  190. ::-webkit-scrollbar-thumb {
  191. border-radius: 0px;
  192. background: #a1a3a9;
  193. /* -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.5); */
  194. }
  195. ::-webkit-scrollbar-thumb:window-inactive {
  196. background: rgba(0, 0, 0, 0.1);
  197. }
  198. </style>
  199. </head>
  200. <body id="box">
  201. <div id="app">
  202. <div id="loader-wrapper">
  203. <div id="loader"></div>
  204. <div class="loader-section section-left"></div>
  205. <div class="loader-section section-right"></div>
  206. <div class="load_title">正在加载系统资源,请耐心等待</div>
  207. </div>
  208. </div>
  209. </body>
  210. </html>