index.html 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <!DOCTYPE html>
  2. <html lang="en">
  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"
  8. content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=0" />
  9. <title>长银数字办公平台</title>
  10. <link rel="icon" href="/favicon.ico" />
  11. <script>
  12. window.process = {};
  13. </script>
  14. </head>
  15. <body>
  16. <div id="app">
  17. <style>
  18. html,
  19. body,
  20. #app {
  21. position: relative;
  22. display: flex;
  23. align-items: center;
  24. justify-content: center;
  25. width: 100%;
  26. height: 100%;
  27. overflow: hidden;
  28. }
  29. .loader,
  30. .loader::before,
  31. .loader::after {
  32. width: 2.5em;
  33. height: 2.5em;
  34. border-radius: 50%;
  35. animation: load-animation 1.8s infinite ease-in-out;
  36. animation-fill-mode: both;
  37. }
  38. .loader {
  39. position: relative;
  40. top: 0;
  41. margin: 80px auto;
  42. font-size: 10px;
  43. color: #406eeb;
  44. text-indent: -9999em;
  45. transform: translateZ(0);
  46. transform: translate(-50%, 0);
  47. animation-delay: -0.16s;
  48. }
  49. .loader::before,
  50. .loader::after {
  51. position: absolute;
  52. top: 0;
  53. content: "";
  54. }
  55. .loader::before {
  56. left: -3.5em;
  57. animation-delay: -0.32s;
  58. }
  59. .loader::after {
  60. left: 3.5em;
  61. }
  62. @keyframes load-animation {
  63. 0%,
  64. 80%,
  65. 100% {
  66. box-shadow: 0 2.5em 0 -1.3em;
  67. }
  68. 40% {
  69. box-shadow: 0 2.5em 0 0;
  70. }
  71. }
  72. </style>
  73. <div class="loader"></div>
  74. </div>
  75. <script type="module" src="/src/main.ts"></script>
  76. </body>
  77. </html>