-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 1.17 KB
/
Copy pathindex.html
File metadata and controls
35 lines (35 loc) · 1.17 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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>优雅计时器</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="timer-container">
<div class="timer" id="timer">00:00:00</div>
<div class="buttons">
<button id="startBtn" class="btn">
<svg class="icon" viewBox="0 0 24 24">
<path d="M8 5v14l11-7z"/>
</svg>
开始
</button>
<button id="pauseBtn" class="btn" disabled>
<svg class="icon" viewBox="0 0 24 24">
<path d="M6 19h4V5H6v14zm8-14v14h4V5h-4z"/>
</svg>
暂停
</button>
<button id="resetBtn" class="btn">
<svg class="icon" viewBox="0 0 24 24">
<path d="M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8z"/>
</svg>
重置
</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>