index.html 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link rel="icon" href="/logo_1.png" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>采销365结算</title>
  8. <script src="/sortable.min.js"></script>
  9. <script>
  10. window.process = {};
  11. </script>
  12. </head>
  13. <body>
  14. <div id="app">
  15. <style>
  16. html,
  17. body,
  18. #app {
  19. width: 100%;
  20. height: 100%;
  21. display: flex;
  22. position: relative;
  23. justify-content: center;
  24. align-items: center;
  25. overflow: hidden;
  26. }
  27. .loader,
  28. .loader:before,
  29. .loader:after {
  30. border-radius: 50%;
  31. width: 2.5em;
  32. height: 2.5em;
  33. -webkit-animation-fill-mode: both;
  34. animation-fill-mode: both;
  35. -webkit-animation: loadAnimation 1.8s infinite ease-in-out;
  36. animation: loadAnimation 1.8s infinite ease-in-out;
  37. }
  38. .loader {
  39. color: #406eeb;
  40. font-size: 10px;
  41. margin: 80px auto;
  42. position: relative;
  43. text-indent: -9999em;
  44. -webkit-transform: translateZ(0);
  45. -ms-transform: translateZ(0);
  46. transform: translateZ(0);
  47. -webkit-animation-delay: -0.16s;
  48. animation-delay: -0.16s;
  49. top: 0;
  50. transform: translate(-50%, 0);
  51. }
  52. .loader:before,
  53. .loader:after {
  54. content: "";
  55. position: absolute;
  56. top: 0;
  57. }
  58. .loader:before {
  59. left: -3.5em;
  60. -webkit-animation-delay: -0.32s;
  61. animation-delay: -0.32s;
  62. }
  63. .loader:after {
  64. left: 3.5em;
  65. }
  66. @-webkit-keyframes loadAnimation {
  67. 0%,
  68. 80%,
  69. 100% {
  70. box-shadow: 0 2.5em 0 -1.3em;
  71. }
  72. 40% {
  73. box-shadow: 0 2.5em 0 0;
  74. }
  75. }
  76. @keyframes loadAnimation {
  77. 0%,
  78. 80%,
  79. 100% {
  80. box-shadow: 0 2.5em 0 -1.3em;
  81. }
  82. 40% {
  83. box-shadow: 0 2.5em 0 0;
  84. }
  85. }
  86. </style>
  87. <div class="loader"></div>
  88. </div>
  89. <script type="module" src="/src/main.ts"></script>
  90. </body>
  91. </html>