办学质量监测教学评价系统
康鲁杰
18 小时以前 0ab0a02b5dff72e9048218460bd3f3a821c9e031
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="zh-cmn-Hans">
<head>
    <meta charset="UTF-8">
    <link rel="icon" type="image/svg+xml" href="/favicon.svg">
    <meta content="yes" name="apple-mobile-web-app-capable"/>
    <link rel="apple-touch-icon" href="/favicon.svg">
    <meta name="viewport"
        content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover" />
    <title>AI Assistant</title>
</head>
 
<body class="dark:bg-black">
    <div id="app">
        <style>
            .loading-wrap {
                display: flex;
                justify-content: center;
                align-items: center;
                height: 100vh;
            }
 
            .balls {
                width: 4em;
                display: flex;
                flex-flow: row nowrap;
                align-items: center;
                justify-content: space-between;
            }
 
            .balls div {
                width: 0.8em;
                height: 0.8em;
                border-radius: 50%;
                background-color: #4b9e5f;
            }
 
            .balls div:nth-of-type(1) {
                transform: translateX(-100%);
                animation: left-swing 0.5s ease-in alternate infinite;
            }
 
            .balls div:nth-of-type(3) {
                transform: translateX(-95%);
                animation: right-swing 0.5s ease-out alternate infinite;
            }
 
            @keyframes left-swing {
 
                50%,
                100% {
                    transform: translateX(95%);
                }
            }
 
            @keyframes right-swing {
                50% {
                    transform: translateX(-95%);
                }
 
                100% {
                    transform: translateX(100%);
                }
            }
 
            @media (prefers-color-scheme: dark) {
                body {
                    background: #121212;
                }
            }
        </style>
        <div class="loading-wrap">
            <div class="balls">
                <div></div>
                <div></div>
                <div></div>
            </div>
        </div>
    </div>
    <script type="module" src="/src/main.ts"></script>
</body>
 
</html>