index.html 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  6. <title>干洗护理 诠释新生</title>
  7. <script src="https://res2.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
  8. <!-- <script src="./vconsole.min.js"></script>
  9. <script>const vConsole = new VConsole();</script> -->
  10. <style>
  11. .boxZoom {
  12. position: absolute;
  13. left: 0;
  14. top: 0;
  15. width: 100vw;
  16. height: 100vh;
  17. overflow: hidden;
  18. z-index: 9999;
  19. /* background: url(./images/loadingBgc.jpg) no-repeat 100% 100%; */
  20. display: flex;
  21. background-color: #000;
  22. /* display: none; */
  23. justify-content: center;
  24. align-items: center;
  25. }
  26. .page-loading-wrapper {
  27. position: absolute;
  28. animation: loadingrotate 1s linear 1s alternate forwards;
  29. width: 0px;
  30. overflow: hidden;
  31. left: 30vw;
  32. }
  33. .page-loading {
  34. width: 40vw;
  35. }
  36. .loadingImag {}
  37. @keyframes loadingrotate {
  38. 0% {
  39. width: 0px;
  40. }
  41. 50% {
  42. width: 10vw;
  43. }
  44. 100% {
  45. width: 35vw;
  46. }
  47. }
  48. </style>
  49. </head>
  50. <body>
  51. <div class="boxZoom">
  52. <div class="page-loading-wrapper">
  53. <div class="page-loading ">
  54. <img class="loadingImag" src="./images/Loading1.png" width="100%" alt="">
  55. </div>
  56. </div>
  57. </div>
  58. <div id="app"></div>
  59. <!-- built files will be auto injected -->
  60. </body>
  61. </html>