123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <!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">
- <script src="https://res2.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
-
- <!-- 调式用 -->
- <!-- <script src="js/vconsole.min.js"></script>
- <script>const vConsole = new VConsole();</script> -->
-
- <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;
- /* display: none; */
- 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>
|