index.html 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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="/favicon.ico">
  8. <title>
  9. 电网教培 - 云致科技
  10. </title>
  11. <style>
  12. .page-loading-wrapper {
  13. position: absolute;
  14. left: 0;
  15. top: 0;
  16. width: 100vw;
  17. height: 100vh;
  18. overflow: hidden;
  19. z-index: 999;
  20. /* background: url(./images/loadingBgc.jpg) no-repeat 100% 100%; */
  21. display: flex;
  22. /* display: none; */
  23. justify-content: center;
  24. align-items: center;
  25. }
  26. .page-loading {
  27. width: 100vw;
  28. /* height: 100vw; */
  29. }
  30. .page-loading .loading-image {
  31. width: 25vw;
  32. height: 25vw;
  33. animation: loadingrotate 4.5s linear infinite;
  34. margin: auto;
  35. }
  36. .page-loading .loading-tips {
  37. width: 100%;
  38. margin-top: 2em;
  39. }
  40. @keyframes loadingrotate {
  41. 100% {
  42. transform: rotate(360deg);
  43. }
  44. }
  45. </style>
  46. </head>
  47. <body>
  48. <noscript>
  49. <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
  50. Please enable it to continue.</strong>
  51. </noscript>
  52. <div class="page-loading-wrapper">
  53. <div class="page-loading">
  54. <div class="loading-image">
  55. <img src="./images/Loading.png" width="100%" alt="">
  56. </div>
  57. </div>
  58. </div>
  59. <div id="app"></div>
  60. <!-- built files will be auto injected -->
  61. </body>
  62. </html>