12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <!DOCTYPE html>
- <html>
-
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
- <title>干洗护理 诠释新生</title>
- <script src="https://res2.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
- <!-- <script src="./vconsole.min.js"></script>
- <script>const vConsole = new VConsole();</script> -->
- <style>
- .boxZoom {
- position: absolute;
- left: 0;
- top: 0;
- width: 100vw;
- height: 100vh;
- overflow: hidden;
- z-index: 9999;
- /* background: url(./images/loadingBgc.jpg) no-repeat 100% 100%; */
- display: flex;
- background-color: #000;
- /* display: none; */
- justify-content: center;
- align-items: center;
- }
-
- .page-loading-wrapper {
- position: absolute;
-
- animation: loadingrotate 1s linear 1s alternate forwards;
- width: 0px;
- overflow: hidden;
- left: 30vw;
- }
-
- .page-loading {
- width: 40vw;
-
- }
-
- .loadingImag {}
-
- @keyframes loadingrotate {
- 0% {
- width: 0px;
-
-
- }
-
- 50% {
- width: 10vw;
-
-
- }
-
- 100% {
- width: 35vw;
-
-
- }
- }
- </style>
- </head>
-
- <body>
- <div class="boxZoom">
-
- <div class="page-loading-wrapper">
- <div class="page-loading ">
- <img class="loadingImag" src="./images/Loading1.png" width="100%" alt="">
-
- </div>
-
- </div>
- </div>
-
- <div id="app"></div>
- <!-- built files will be auto injected -->
- </body>
-
- </html>
|