index.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link rel="icon" href="/logo.png" />
  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. </head>
  17. <body>
  18. <div id="app">
  19. </div>
  20. </body>
  21. <script src="/src/main.ts" type="module"></script>
  22. <style>
  23. html,
  24. body,
  25. #app {
  26. position: relative;
  27. display: flex;
  28. align-items: center;
  29. justify-content: center;
  30. width: 100%;
  31. height: 100%;
  32. }
  33. .loader {
  34. position: relative;
  35. width: 40px;
  36. aspect-ratio: 0.577;
  37. overflow: hidden;
  38. clip-path: polygon(0 0, 100% 100%, 0 100%, 100% 0);
  39. animation: l19 2s infinite linear;
  40. }
  41. .loader::before {
  42. position: absolute;
  43. inset: -150%;
  44. content: "";
  45. background: repeating-conic-gradient(
  46. from 30deg,
  47. #ffabab 0 60deg,
  48. #abe4ff 0 120deg,
  49. #ff7373 0 180deg
  50. );
  51. animation: inherit;
  52. animation-direction: reverse;
  53. }
  54. @keyframes l19 {
  55. 100% {
  56. transform: rotate(360deg);
  57. }
  58. }
  59. </style>
  60. </html>