index.html 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <!--
  2. * @Author: PoJun
  3. * @Date: 2023-05-29 16:07:21
  4. * @LastEditors: PoJun
  5. * @LastEditTime: 2023-05-31 16:52:08
  6. * @Message: Nothing
  7. -->
  8. <!DOCTYPE html>
  9. <html lang="">
  10. <head>
  11. <meta charset="utf-8" />
  12. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  13. <meta name="viewport" content="width=device-width,initial-scale=1.0" />
  14. <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
  15. <title><%= process.env.VUE_APP_SYSTEM_NAME %></title>
  16. <style type="text/css">
  17. #pageInitLoading {
  18. top: 50%;
  19. left: 50%;
  20. position: absolute;
  21. -webkit-transform: translateY(-50%) translateX(-50%);
  22. transform: translateY(-50%) translateX(-50%);
  23. z-index: 100;
  24. }
  25. @-webkit-keyframes ball-beat {
  26. 50% {
  27. opacity: 0.2;
  28. -webkit-transform: scale(0.75);
  29. transform: scale(0.75);
  30. }
  31. 100% {
  32. opacity: 1;
  33. -webkit-transform: scale(1);
  34. transform: scale(1);
  35. }
  36. }
  37. @keyframes ball-beat {
  38. 50% {
  39. opacity: 0.2;
  40. -webkit-transform: scale(0.75);
  41. transform: scale(0.75);
  42. }
  43. 100% {
  44. opacity: 1;
  45. -webkit-transform: scale(1);
  46. transform: scale(1);
  47. }
  48. }
  49. .ball-beat > div {
  50. background-color: #4080ff;
  51. width: 15px;
  52. height: 15px;
  53. border-radius: 100% !important;
  54. margin: 2px;
  55. -webkit-animation-fill-mode: both;
  56. animation-fill-mode: both;
  57. display: inline-block;
  58. -webkit-animation: ball-beat 0.7s 0s infinite linear;
  59. animation: ball-beat 0.7s 0s infinite linear;
  60. }
  61. .ball-beat > div:nth-child(2n-1) {
  62. -webkit-animation-delay: 0.35s !important;
  63. animation-delay: 0.35s !important;
  64. }
  65. </style>
  66. </head>
  67. <body>
  68. <noscript>
  69. <strong>
  70. We're sorry but <%= process.env.VUE_APP_CUR_PROJECT_ENV %> doesn't work properly without JavaScript
  71. enabled. Please enable it to continue.
  72. </strong>
  73. </noscript>
  74. <div id="pageInitLoading">
  75. <div class="loader-inner ball-beat">
  76. <div></div>
  77. <div></div>
  78. <div></div>
  79. </div>
  80. </div>
  81. <div id="app"></div>
  82. <!-- built files will be auto injected -->
  83. </body>
  84. </html>