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.

49 lines
1.0 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. p {
  17. position: absolute;
  18. top: 50%;
  19. left: 50%;
  20. transform: translate(-50%, -50%);
  21. font-size: 26px;
  22. }
  23. p::after {
  24. content: "";
  25. position: absolute;
  26. top: 0%;
  27. bottom: 0;
  28. animation: dot 1s infinite steps(1, start);
  29. }
  30. @keyframes dot {
  31. 33.33% {
  32. content: ".";
  33. }
  34. 66.67% {
  35. content: "..";
  36. }
  37. 100% {
  38. content: "...";
  39. }
  40. }
  41. </style>
  42. <p>Loading</p>
  43. </div>
  44. <script type="module" src="/src/main.ts"></script>
  45. </body>
  46. </html>