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