-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (50 loc) · 1.38 KB
/
index.html
File metadata and controls
50 lines (50 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Timer</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="timer-wrapper">
<div class="timer">
<svg
class="base-timer__svg"
viewBox="0 0 100 100"
xmlns="http://www.w3.org/2000/svg"
>
<g class="base-timer__circle">
<circle
class="base-timer__path-elapsed"
cx="50"
cy="50"
r="45"
></circle>
<path
id="base-timer-path-remaining"
stroke-dasharray="283"
class="base-timer__path-remaining"
d="
M 50, 50
m -45, 0
a 45,45 0 1,0 90,0
a 45,45 0 1,0 -90,0
"
></path>
</g>
</svg>
<div class="timer-content">
<h1>00:00</h1>
</div>
</div>
<div class="timer-buttons">
<button id="btnCancel" class="cancel">Cancel</button>
<button id="btnPause" class="pause">Pause</button>
<button id="btnStart" class="start">Start</button>
</div>
</div>
<script src="./dist/bundle.js"></script>
</body>
</html>