index.html 1.7 KB

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