index.html 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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>后台管理系统</title>
  9. <script src="https://cdn.bootcdn.net/ajax/libs/Sortable/1.13.0/Sortable.js"></script>
  10. <script>
  11. window.process = {};
  12. </script>
  13. </head>
  14. <body>
  15. <div id="app">
  16. <style>
  17. * {
  18. margin: 0;
  19. padding: 0;
  20. }
  21. html,
  22. body {
  23. width: 100%;
  24. height: 100%;
  25. display: flex;
  26. justify-content: center;
  27. align-items: center;
  28. background: #000;
  29. overflow: hidden;
  30. font-family: "Reggae One", cursive;
  31. }
  32. p {
  33. font-size: 12vw;
  34. overflow: hidden;
  35. -webkit-text-stroke: 3px #7272a5;
  36. }
  37. p::before {
  38. content: " ";
  39. width: 100%;
  40. height: 100%;
  41. position: absolute;
  42. left: 0;
  43. top: 0;
  44. background-image: linear-gradient(45deg, #ff269b, #2ab5f5, #ffbf00);
  45. mix-blend-mode: multiply;
  46. }
  47. p::after {
  48. content: "";
  49. background: radial-gradient(circle, #fff, #000 50%);
  50. background-size: 25% 25%;
  51. position: absolute;
  52. top: -100%;
  53. left: -100%;
  54. right: 0;
  55. bottom: 0;
  56. mix-blend-mode: color-dodge;
  57. animation: mix 2s linear infinite;
  58. }
  59. @keyframes mix {
  60. to {
  61. transform: translate(50%, 50%);
  62. }
  63. }
  64. </style>
  65. <div class="g-container">
  66. <p>Pure-Admin</p>
  67. </div>
  68. </div>
  69. <script type="module" src="/src/main.ts"></script>
  70. </body>
  71. </html>