You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

103 lines
2.3 KiB

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