-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (49 loc) · 1.5 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=1" />
<title>Knob.js Demo - Knob</title>
<link href="./style.scss" type="text/scss" rel="stylesheet" />
<script
src="https://cdn.jsdelivr.net/gh/lf2com/browser-utils@latest/dist/scriptLoader.js"
module="
~/scss;
../utils/knob
"
></script>
</head>
<body>
<div id="degree" class="row">
<span class="name">Degree:</span>
<input type="number" value="0" />
</div>
<div id="min" class="row">
<input type="checkbox" id="min-checkbox"
/><label for="min-checkbox"
><span class="name">Min:</span
></label>
<input type="number" value="-60" />
</div>
<div id="max" class="row">
<input type="checkbox" id="max-checkbox"
/><label for="max-checkbox"
><span class="name">Max:</span
></label>
<input type="number" value="120" />
</div>
<div id="style" class="row">
<span class="name">Style:</span>
<input type="radio" name="style" id="dot" value="dot"
/><label for="dot">dot</label>
<input type="radio" name="style" id="triangle" value="triangle"
/><label for="triangle">triangle</label>
<input type="radio" name="style" id="line" value="line"
/><label for="line">line</label>
</div>
<div class="row">
<knob-dot id="knob"></knob-dot>
</div>
</body>
<script src="./main.js"></script>
</html>