-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·35 lines (33 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>CodePen - css gauge</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div class="gauge">
<div class="gauge__body">
<div class="gauge__fill">
<div class="point"></div>
</div>
<div class="gauge__cover"></div>
</div>
</div>
<br />
<br />
<div>
<button type="button" onclick="fn(100)">100</button>
<button type="button" onclick="fn(200)">200</button>
<button type="button" onclick="fn(300)">300</button>
<button type="button" onclick="fn(400)">400</button>
<button type="button" onclick="fn(500)">500</button>
<button type="button" onclick="fn(600)">600</button>
<button type="button" onclick="fn(700)">700</button>
<button type="button" onclick="fn(800)">800</button>
<button type="button" onclick="fn(900)">900</button>
<button type="button" onclick="fn(1000)">1000</button>
</div>
<script src="./script.js"></script>
</body>
</html>