123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <link rel="icon" href="/favicon.ico" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <meta
- name="description"
- content="Vue3 + Vite5 + TypeScript5 + Element-Plus 的后台管理模板,配套接口文档和后端源码,vue-element-admin 的 Vue3 版本"
- />
- <meta
- name="keywords"
- content="vue,element-plus,typescript,vue-element-admin,vue3-element-admin"
- />
- <title>康复信息智能管理系统</title>
- </head>
- <body>
- <div id="app">
- <div class="loader"></div>
- </div>
- </body>
- <script type="module" src="/src/main.ts"></script>
- <style>
- html,
- body,
- #app {
- position: relative;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 100%;
- }
- .loader {
- --d: 440px;
- width: 80px;
- height: 80px;
- color: #25b09b;
- border-radius: 50%;
- box-shadow:
- calc(1 * var(--d)) calc(0 * var(--d)) 0 0,
- calc(0.707 * var(--d)) calc(0.707 * var(--d)) 0 20px,
- calc(0 * var(--d)) calc(1 * var(--d)) 0 2px,
- calc(-0.707 * var(--d)) calc(0.707 * var(--d)) 0 60px,
- calc(-1 * var(--d)) calc(0 * var(--d)) 0 4px,
- calc(-0.707 * var(--d)) calc(-0.707 * var(--d)) 0 100px,
- calc(0 * var(--d)) calc(-1 * var(--d)) 0 120px;
- animation: l27 1s infinite steps(8);
- }
- @keyframes l27 {
- 100% {
- transform: rotate(1turn);
- }
- }
- </style>
- </html>
|