index.html 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. <script src="http://res2.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
  9. <title>华侨城</title>
  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: 999;
  19. background: url(./images/loadingBgc.jpg) no-repeat 100% 100%;
  20. display: flex;
  21. justify-content: center;
  22. align-items: center;
  23. }
  24. .page-loading {
  25. width: 100vw;
  26. height: 100vw;
  27. }
  28. .page-loading .loading-image {
  29. width: 25vw;
  30. height: 25vw;
  31. animation: loadingrotate 4.5s linear infinite;
  32. margin: auto;
  33. }
  34. .page-loading .loading-tips {
  35. width: 100%;
  36. margin-top: 2em;
  37. }
  38. @keyframes loadingrotate {
  39. 100% {
  40. transform:rotate(360deg);
  41. }
  42. }
  43. </style>
  44. </head>
  45. <body>
  46. <div class="page-loading-wrapper">
  47. <div class="page-loading">
  48. <div class="loading-image">
  49. <img src="./images/loading.png" width="100%" alt="">
  50. </div>
  51. <div class="loading-tips">
  52. <img src="./images/loading_bar.png" width="100%" alt="">
  53. </div>
  54. </div>
  55. </div>
  56. <div id="app"></div>
  57. <!-- built files will be auto injected -->
  58. </body>
  59. </html>