index.html 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. .page-loading-wrapper {
  12. position: absolute;
  13. left: 0;
  14. top: 0;
  15. width: 100vw;
  16. height: 100vh;
  17. overflow: hidden;
  18. z-index: 99999;
  19. /* background: url(./images/loadingBgc.jpg) no-repeat 100% 100%; */
  20. display: flex;
  21. /* display: none; */
  22. justify-content: center;
  23. align-items: center;
  24. }
  25. .page-loading {
  26. width: 0px;
  27. position: relative;
  28. animation: loadingrotate 3s ease-in-out 0s 1 alternate forwards;
  29. overflow: hidden;
  30. /* height: 100vw; */
  31. }
  32. .page-loading .loading-image {
  33. width: 40vw;
  34. height: 40vw;
  35. /* margin: auto; */
  36. }
  37. .page-loading .loading-tips {
  38. width: 100%;
  39. margin-top: 2em;
  40. }
  41. @keyframes loadingrotate {
  42. 0% {
  43. width: 0px;
  44. left: -1vw;
  45. }
  46. 50% {
  47. width: 10vw;
  48. left: -12vw;
  49. }
  50. 100% {
  51. width: 31vw;
  52. left: 0vw;
  53. }
  54. }
  55. </style>
  56. </head>
  57. <body>
  58. <div class="page-loading-wrapper">
  59. <div class="page-loading">
  60. <div class="loading-image">
  61. <img src="./images/Loading1.png" width="100%" alt="">
  62. </div>
  63. </div>
  64. </div>
  65. <div id="app"></div>
  66. <!-- built files will be auto injected -->
  67. </body>
  68. </html>