123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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: 641px;
  25. height: 641px;
  26. }
  27. .page-loading .loading-image {
  28. width: 146px;
  29. height: 146px;
  30. background: url(./images/loadingBgc.jpg) no-repeat 100% 100%;
  31. animation: loadingrotate 2s linear infinite;
  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"></div>
  48. <div class="loading-tips">
  49. <img src="./images/loading_bar.png" width="100%" alt="">
  50. </div>
  51. </div>
  52. </div>
  53. <div id="app"></div>
  54. <!-- built files will be auto injected -->
  55. </body>
  56. </html>