-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (40 loc) · 872 Bytes
/
index.html
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
<!doctype html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>高兴就好</title>
</head>
<body>
<div id="app">
<div class="gif-content">
<img src="./public/loading.gif" class="gif" />
</div>
</div>
<script type="module" src="/pages/previews/main.ts"></script>
</body>
</html>
<script></script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.gif-content {
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
background: #000;
}
.gif {
width: 6rem;
height: 6rem;
object-fit: contain;
aspect-ratio: 1 / 1;
}
</style>