-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (55 loc) · 1.44 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!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" />
<title>TFPS</title>
<link rel="stylesheet" href="/index.css" />
</head>
<body>
<div id="mask">
<div id="tips">
<!-- 拾枪提示 -->
<div class="weapon">
<div class="weapon-gun">
<div class="weapon-gun_left">F</div>
<div class="weapon-gun_right">
<p>AK47</p>
<p>按F键或点击拾取</p>
</div>
</div>
<div class="weapon-gun">
<div class="weapon-gun_left">
<img src="/7.62.png" height="50%" width="60%" />
</div>
<div class="weapon-gun_right">
<p>7.62毫米</p>
<p>30 / ♾️</p>
</div>
</div>
</div>
</div>
</div>
<div id="app">
<div id="loading">
<div class="loaderRectangle">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div
style="color: #f9f9f9; text-align: center"
margin-top:
20px;
id="loading-text"
>
响应成功,正在加载核心文件...
</div>
</div>
</div>
<script type="module" src="./src/main.ts"></script>
</body>
</html>