1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <!DOCTYPE html>
  2. <html lang="">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  7. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  8. <title>华侨城</title>
  9. <style>
  10. .page-loading-wrapper {
  11. position: absolute;
  12. left: 0;
  13. top: 0;
  14. width: 100vw;
  15. height: 100vh;
  16. overflow: hidden;
  17. z-index: 999;
  18. background: url(./images/loadingBgc.jpg) no-repeat 100% 100%;
  19. display: flex;
  20. justify-content: center;
  21. align-items: center;
  22. }
  23. .page-loading {
  24. width: 100vw;
  25. height: 100vw;
  26. }
  27. .page-loading .loading-image {
  28. width: 25vw;
  29. height: 25vw;
  30. animation: loadingrotate 4.5s linear infinite;
  31. margin: auto;
  32. }
  33. .page-loading .loading-tips {
  34. width: 100%;
  35. margin-top: 2em;
  36. }
  37. @keyframes loadingrotate {
  38. 100% {
  39. transform:rotate(360deg);
  40. }
  41. }
  42. </style>
  43. </head>
  44. <body>
  45. <div class="page-loading-wrapper">
  46. <div class="page-loading">
  47. <div class="loading-image">
  48. <img src="./images/loading.png" width="100%" alt="">
  49. </div>
  50. <div class="loading-tips">
  51. <img src="./images/loading_bar.png" width="100%" alt="">
  52. </div>
  53. </div>
  54. </div>
  55. <div id="app"></div>
  56. <!-- built files will be auto injected -->
  57. </body>
  58. </html>