index.html 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. <style>
  8. .page-loading-wrapper {
  9. position: absolute;
  10. left: 0;
  11. top: 0;
  12. width: 100vw;
  13. height: 100vh;
  14. overflow: hidden;
  15. z-index: 99999;
  16. /* background: url(./images/loadingBgc.jpg) no-repeat 100% 100%; */
  17. display: flex;
  18. /* display: none; */
  19. justify-content: center;
  20. align-items: center;
  21. }
  22. .page-loading {
  23. width: 100vw;
  24. /* height: 100vw; */
  25. }
  26. .page-loading .loading-image {
  27. width: 15vw;
  28. height: 15vw;
  29. animation: loadingrotate 1.5s linear infinite;
  30. margin: auto;
  31. }
  32. .page-loading .loading-tips {
  33. width: 100%;
  34. margin-top: 2em;
  35. }
  36. @keyframes loadingrotate {
  37. 100% {
  38. transform: rotate(360deg);
  39. }
  40. }
  41. </style>
  42. </head>
  43. <body>
  44. <div class="page-loading-wrapper">
  45. <div class="page-loading">
  46. <div class="loading-image">
  47. <img src="./images/Loading.png" width="100%" alt="">
  48. </div>
  49. </div>
  50. </div>
  51. <div id="app"></div>
  52. <!-- built files will be auto injected -->
  53. </body>
  54. </html>