forked from Aposymbiont/split-keyboards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-head.hc
80 lines (72 loc) · 3.92 KB
/
index-head.hc
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Split Keyboards Gallery</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="a-s-k.css" rel="stylesheet"/>
</head>
<body>
<nav>
<ul>
<li><a class="active" href="./">Split keyboard gallery</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="https://jhelvy.shinyapps.io/splitkbcompare/">Comparison tool</a>
<li><a href="./diy.html">DIY</a></li>
<li><a href="./links.html">Links</a></li>
</ul>
</nav>
<div class="controls">
<fieldset>
<legend>Layout</legend>
<!-- Layout: traditional, ortho, ergo, dish -->
<input type="checkbox" id="traditional" checked><label for="traditional">Traditional</label>
<input type="checkbox" id="ortho" checked><label for="ortho">Ortholinear</label>
<input type="checkbox" id="ergo" checked><label for="ergo">Ergonomic</label>
<input type="checkbox" id="dish" checked><label for="dish">Dished</label>
</fieldset>
<fieldset>
<legend>Keys</legend>
<datalist id="keysLegend">
<option value="30"></option>
<option value="40"></option>
<option value="50"></option>
<option value="60"></option>
<option value="70"></option>
<option value="80"></option>
<option value="90"></option>
<option value="100"></option>
<option value="110"></option>
<option value="120"></option>
<option value="130"></option>
<option value="140"></option>
</datalist>
<div class="range-slider">
<label class="range-slider-label"><span id="minKeysNum">30</span> minimum keys</label>
<input name="minKeys" class="range-slider-input" type="range" min="30" max="140" value="30" list="keysLegend"/>
</div>
<div class="range-slider">
<label class="range-slider-label"><span id="maxKeysNum">140</span> maximum keys</label>
<input name="maxKeys" class="range-slider-input" type="range" min="30" max="140" value="140" list="keysLegend"/>
</div>
</fieldset>
<fieldset>
<legend>Features</legend>
<!-- Features: Two part, rotary encoder, trackball/point/pad, display, wireless -->
<input type="checkbox" id="split"><label for="split">Two halves</label>
<input type="checkbox" id="encoder"><label for="encoder">Rotary encoder</label>
<input type="checkbox" id="track"><label for="track">Trackball/pad</label>
<input type="checkbox" id="display"><label for="display">Display</label>
<input type="checkbox" id="wireless"><label for="wireless">Wireless</label>
</fieldset>
<fieldset>
<legend>Availability</legend>
<!-- Availability: massproduced, assembled, kit, source, unavailable -->
<input type="checkbox" id="massproduced" checked><label for="massproduced">Mass produced</label>
<input type="checkbox" id="assembled" checked><label for="assembled">Assembled</label>
<input type="checkbox" id="kit" checked><label for="kit">Kit</label>
<input type="checkbox" id="source" checked><label for="source">Source (plans)</label>
<input type="checkbox" id="unavailable"><label for="unavailable">Unavailable</label>
</fieldset>
</div>
<div id="Container" class="container">