| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
- <link rel="icon" href="<%= BASE_URL %>favicon.ico">
- <title><%= webpackConfig.name %></title>
- <style type="text/css">
- .global-loader {
- background: #000;
- background: -webkit-radial-gradient(#222, #000);
- background: radial-gradient(#222, #000);
- bottom: 0;
- left: 0;
- right: 0;
- top: 0;
- overflow: hidden;
- position: fixed;
- z-index: 99999;
- }
- .global-loader .loader-inner {
- bottom: 0;
- height: 60px;
- left: 0;
- margin: auto;
- position: absolute;
- right: 0;
- top: 0;
- width: 100px;
- }
- .global-loader .loader-line-wrap {
- -webkit-animation: spin 2000ms cubic-bezier(.175, .885, .32, 1.275) infinite;
- animation: spin 2000ms cubic-bezier(.175, .885, .32, 1.275) infinite;
- box-sizing: border-box;
- height: 50px;
- left: 0;
- overflow: hidden;
- position: absolute;
- top: 0;
- -webkit-transform-origin: 50% 100%;
- transform-origin: 50% 100%;
- width: 100px;
- }
- .global-loader .loader-line {
- border: 4px solid transparent;
- border-radius: 100%;
- box-sizing: border-box;
- height: 100px;
- left: 0;
- margin: 0 auto;
- position: absolute;
- right: 0;
- top: 0;
- width: 100px;
- }
- .global-loader .loader-line-wrap:nth-child(1) {
- -webkit-animation-delay: -50ms;
- animation-delay: -50ms;
- }
- .global-loader .loader-line-wrap:nth-child(2) {
- -webkit-animation-delay: -100ms;
- animation-delay: -100ms;
- }
- .global-loader .loader-line-wrap:nth-child(3) {
- -webkit-animation-delay: -150ms;
- animation-delay: -150ms;
- }
- .global-loader .loader-line-wrap:nth-child(4) {
- -webkit-animation-delay: -200ms;
- animation-delay: -200ms;
- }
- .global-loader .loader-line-wrap:nth-child(5) {
- -webkit-animation-delay: -250ms;
- animation-delay: -250ms;
- }
- .global-loader .loader-line-wrap:nth-child(1) .loader-line {
- border-color: hsl(0, 80%, 60%);
- height: 90px;
- width: 90px;
- top: 7px;
- }
- .global-loader .loader-line-wrap:nth-child(2) .loader-line {
- border-color: hsl(60, 80%, 60%);
- height: 76px;
- width: 76px;
- top: 14px;
- }
- .global-loader .loader-line-wrap:nth-child(3) .loader-line {
- border-color: hsl(120, 80%, 60%);
- height: 62px;
- width: 62px;
- top: 21px;
- }
- .global-loader .loader-line-wrap:nth-child(4) .loader-line {
- border-color: hsl(180, 80%, 60%);
- height: 48px;
- width: 48px;
- top: 28px;
- }
- .global-loader .loader-line-wrap:nth-child(5) .loader-line {
- border-color: hsl(240, 80%, 60%);
- height: 34px;
- width: 34px;
- top: 35px;
- }
- @-webkit-keyframes spin {
- 0%, 15% {
- -webkit-transform: rotate(0);
- transform: rotate(0);
- }
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- }
- @keyframes spin {
- 0%, 15% {
- -webkit-transform: rotate(0);
- transform: rotate(0);
- }
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- }
- </style>
- <script charset="utf-8" src="https://map.qq.com/api/gljs?v=1.exp&key=LVABZ-ZRC36-BWWS3-E6WJB-BVKZK-7DFP4"></script>
- </head>
- <body>
- <noscript>
- <strong>We're sorry but <%= webpackConfig.name %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
- </noscript>
- <div id="app">
- <div class="global-loader">
- <div class="loader-inner">
- <div class="loader-line-wrap">
- <div class="loader-line"></div>
- </div>
- <div class="loader-line-wrap">
- <div class="loader-line"></div>
- </div>
- <div class="loader-line-wrap">
- <div class="loader-line"></div>
- </div>
- <div class="loader-line-wrap">
- <div class="loader-line"></div>
- </div>
- <div class="loader-line-wrap">
- <div class="loader-line"></div>
- </div>
- </div>
- </div>
- </div>
- <!-- built files will be auto injected -->
- </body>
- </html>
|