index.html 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6. <meta name="renderer" content="webkit">
  7. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
  8. <meta http-equiv="pragram" content="no-cache">
  9. <meta http-equiv="cache-control" content="no-cache, no-store, must-revalidate">
  10. <meta http-equiv="expires" content="0">
  11. <title>
  12. <%= webpackConfig.name %>
  13. </title>
  14. <!--[if lt IE 11]><script>window.location.href='html/ie.html';</script><![endif]-->
  15. <style>
  16. html,
  17. body,
  18. #app {
  19. height: 100%;
  20. margin: 0px;
  21. padding: 0px;
  22. }
  23. #loader-wrapper {
  24. width: 100%;
  25. height: 100%;
  26. z-index: 999999;
  27. display: flex;
  28. align-items: center;
  29. justify-content: center;
  30. flex-direction: column;
  31. background-color: rgb(48, 65, 86);
  32. }
  33. .sk-cube-grid {
  34. width: 120px;
  35. height: 120px;
  36. }
  37. .sk-cube-grid .sk-cube {
  38. width: 33%;
  39. height: 33%;
  40. background-color: rgba(0, 160, 233, 1);
  41. float: left;
  42. -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  43. animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  44. }
  45. .sk-cube-grid .sk-cube1 {
  46. -webkit-animation-delay: 0.2s;
  47. animation-delay: 0.2s;
  48. }
  49. .sk-cube-grid .sk-cube2 {
  50. -webkit-animation-delay: 0.3s;
  51. animation-delay: 0.3s;
  52. }
  53. .sk-cube-grid .sk-cube3 {
  54. -webkit-animation-delay: 0.4s;
  55. animation-delay: 0.4s;
  56. }
  57. .sk-cube-grid .sk-cube4 {
  58. -webkit-animation-delay: 0.1s;
  59. animation-delay: 0.1s;
  60. }
  61. .sk-cube-grid .sk-cube5 {
  62. -webkit-animation-delay: 0.2s;
  63. animation-delay: 0.2s;
  64. }
  65. .sk-cube-grid .sk-cube6 {
  66. -webkit-animation-delay: 0.3s;
  67. animation-delay: 0.3s;
  68. }
  69. .sk-cube-grid .sk-cube7 {
  70. -webkit-animation-delay: 0s;
  71. animation-delay: 0s;
  72. }
  73. .sk-cube-grid .sk-cube8 {
  74. -webkit-animation-delay: 0.1s;
  75. animation-delay: 0.1s;
  76. }
  77. .sk-cube-grid .sk-cube9 {
  78. -webkit-animation-delay: 0.2s;
  79. animation-delay: 0.2s;
  80. }
  81. @keyframes sk-cubeGridScaleDelay {
  82. 0%,
  83. 70%,
  84. 100% {
  85. -webkit-transform: scale3D(1, 1, 1);
  86. transform: scale3D(1, 1, 1);
  87. }
  88. 35% {
  89. -webkit-transform: scale3D(0, 0, 1);
  90. transform: scale3D(0, 0, 1);
  91. }
  92. }
  93. .load-title {
  94. margin-top: 30px;
  95. color: white;
  96. }
  97. </style>
  98. </head>
  99. <body>
  100. <div id="app">
  101. <div id="loader-wrapper">
  102. <div class="sk-cube-grid">
  103. <div class="sk-cube sk-cube1"></div>
  104. <div class="sk-cube sk-cube2"></div>
  105. <div class="sk-cube sk-cube3"></div>
  106. <div class="sk-cube sk-cube4"></div>
  107. <div class="sk-cube sk-cube5"></div>
  108. <div class="sk-cube sk-cube6"></div>
  109. <div class="sk-cube sk-cube7"></div>
  110. <div class="sk-cube sk-cube8"></div>
  111. <div class="sk-cube sk-cube9"></div>
  112. </div>
  113. <div class="load-title">系统资源加载中,请稍候......</div>
  114. </div>
  115. </div>
  116. </body>
  117. </html>