-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.61 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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="" id="site-description">
<title id="site-title"></title>
<link rel="stylesheet" href="styles.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/js-yaml/4.1.0/js-yaml.min.js"></script>
<script src="script.js" defer></script>
</head>
<body>
<div class="container">
<div class="loading-card">
<div class="logo">
<div class="rocket">🚀</div>
<div class="circle-ripple"></div>
</div>
<h1 id="site-heading"></h1>
<div class="card-content">
<div id="test-results" class="test-results"></div>
<div class="progress-bar">
<div class="progress-fill"></div>
</div>
<div class="loading-dots">
<span></span>
<span></span>
<span></span>
</div>
<div class="waiting-text">
<span class="status-icon">⚡</span>
<span id="result-text">正在测试线路...</span>
<button id="stop-btn" style="display:none;" onclick="stopTesting()">停止测试</button>
</div>
</div>
</div>
<div class="background">
<div class="gradient-layer"></div>
<div class="pattern-layer"></div>
</div>
</div>
</body>
</html>