-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
46 lines (46 loc) · 1.86 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="stylesheet" type="text/css" href="symbolfont/css/hovercraft.css">
<title>Hovercraft</title>
</head>
<body>
<button id="settings">
<i class="icon-settings"></i>
</button>
<section id="info">
Hovercraft <script>document.write(require('./package.json').version)</script>
Node <script>document.write(process.versions.node)</script>,
Chrome <script>document.write(process.versions.chrome)</script>,
Electron <script>document.write(process.versions.electron)</script>.
<section id="controls">
<label for="jitterWindow">Hysterese (samples)</label>
<span name="jitterWindow"></span>
<input type="range" name="jitterWindow">
<label for="precisionThresholdPx">Grenzwert (px)</label>
<span name="precisionThresholdPx"></span>
<input type="range" name="precisionThresholdPx" step="any">
<label for="waitingTime">Wartezeit (ms)</label>
<span name="waitingTime"></span>
<input type="range" name="waitingTime">
</section>
</section>
<section id="clicks">
<button data-symbol="lL">Links</button>
<button data-symbol="mM">Mitte</button>
<button data-symbol="rR">Rechts</button>
<button data-symbol="lL.lL">Doppelklick</button>
<button data-symbol="l~L">Drag and Drop</button>
<button data-symbol="rR~lL">Kontextmenü</button>
</section>
<section id="modifiers">
<button data-symbol="s">Shift</button>
<button data-symbol="a">Alt</button>
<button data-symbol="g">AltGr</button>
<button data-symbol="c">Strg</button>
</section>
<script lang="javascript" src="renderer.js"></script>
</body>
</html>