index.html 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link rel="icon" href="/logo.png" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <meta
  8. name="description"
  9. content="Vue3 + Vite5 + TypeScript5 + Element-Plus 的后台管理模板,配套接口文档和后端源码,vue-element-admin 的 Vue3 版本"
  10. />
  11. <meta
  12. name="keywords"
  13. content="vue,element-plus,typescript,vue-element-admin,vue3-element-admin"
  14. />
  15. <script src="/sortable/Sortable.min.js"></script>
  16. <title>MES系统</title>
  17. <link rel="stylesheet" href="/LuckExcel/pluginsCss.css" />
  18. <link rel="stylesheet" href="/LuckExcel/plugins.css" />
  19. <link rel="stylesheet" href="/LuckExcel/luckysheet.css" />
  20. <link rel="stylesheet" href="/LuckExcel/iconfont.css" />
  21. <script src="/LuckExcel/plugin.js"></script>
  22. <script src="/LuckExcel/luckysheet.umd.js"></script>
  23. </head>
  24. <body>
  25. <div id="app">
  26. <div class="loader"></div>
  27. </div>
  28. </body>
  29. <script type="module" src="/src/main.ts"></script>
  30. <style>
  31. html,
  32. body,
  33. #app {
  34. position: relative;
  35. display: flex;
  36. align-items: center;
  37. justify-content: center;
  38. width: 100%;
  39. height: 100%;
  40. }
  41. .loader {
  42. position: relative;
  43. width: 40px;
  44. aspect-ratio: 0.577;
  45. overflow: hidden;
  46. clip-path: polygon(0 0, 100% 100%, 0 100%, 100% 0);
  47. animation: l19 2s infinite linear;
  48. }
  49. .loader::before {
  50. position: absolute;
  51. inset: -150%;
  52. content: "";
  53. background: repeating-conic-gradient(
  54. from 30deg,
  55. #ffabab 0 60deg,
  56. #abe4ff 0 120deg,
  57. #ff7373 0 180deg
  58. );
  59. animation: inherit;
  60. animation-direction: reverse;
  61. }
  62. @keyframes l19 {
  63. 100% {
  64. transform: rotate(360deg);
  65. }
  66. }
  67. </style>
  68. </html>