-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (67 loc) · 1.95 KB
/
index.html
File metadata and controls
71 lines (67 loc) · 1.95 KB
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
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/dcuFace.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>다솜이 | 함께 사는 즐거움</title>
<style>
#loading {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: #166534;
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
}
#loading img {
width: 150px;
animation: bounce 2s infinite ease-in-out;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes bounce {
0%,
100% {
transform: translateY(0);
}
50% {
transform: translateY(-20px);
}
}
#root {
display: none;
}
</style>
</head>
<body oncontextmenu="return false">
<div id="root"></div>
<div id="loading">
<picture>
<source
srcset="/assets/dcuCharacter/webp/dcuFace.webp"
type="image/webp"
/>
<source
srcset="/assets/dcuCharacter/jpeg/dcuFace.jpeg"
type="image/jpeg"
/>
<img
src="/assets/dcuCharacter/jpeg/dcuFace.jpeg"
alt="loading"
/>
</picture>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>