1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <!DOCTYPE html>
- <html lang="">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
- <link rel="icon" href="<%= BASE_URL %>favicon.ico">
- <title>华侨城</title>
- <style>
- .page-loading-wrapper {
- position: absolute;
- left: 0;
- top: 0;
- width: 100vw;
- height: 100vh;
- overflow: hidden;
- z-index: 999;
- background: url(./images/loadingBgc.jpg) no-repeat 100% 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
-
- .page-loading {
- width: 100vw;
- height: 100vw;
- }
-
- .page-loading .loading-image {
- width: 25vw;
- height: 25vw;
- animation: loadingrotate 4.5s linear infinite;
- margin: auto;
- }
-
- .page-loading .loading-tips {
- width: 100%;
- margin-top: 2em;
- }
-
- @keyframes loadingrotate {
- 100% {
- transform:rotate(360deg);
- }
- }
- </style>
- </head>
- <body>
- <div class="page-loading-wrapper">
- <div class="page-loading">
- <div class="loading-image">
- <img src="./images/loading.png" width="100%" alt="">
- </div>
- <div class="loading-tips">
- <img src="./images/loading_bar.png" width="100%" alt="">
- </div>
- </div>
- </div>
- <div id="app"></div>
- <!-- built files will be auto injected -->
- </body>
- </html>
|