forked from Nuclear-Squid/ergol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dev.html
109 lines (100 loc) · 3.2 KB
/
dev.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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="fr" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta name="description" content="a Colemak-style keyboard layout for French-speaking users" />
<title> Ergo-L </title>
<link type="text/css" rel="stylesheet" href="css/layout.css" />
<link type="text/css" rel="stylesheet" href="css/demo.css" />
<link type="text/css" rel="stylesheet" href="css/heatmap.css" />
<link type="image/svg+xml" rel="icon" href="favicon.svg" sizes="any" />
<script src="js/x-keyboard.js" type="module"></script>
<script src="js/heatmap.js" type="text/javascript"></script>
</head>
<body>
<header>
<h1> Heatmap </h1>
<p> Fréquences de touches obtenues avec le “Don Quichotte” de Cervantès. </p>
</header>
<div id="selector">
<x-keyboard id="keyboard"></x-keyboard>
<form>
<select id="layout">
<option disabled> [dev] </option>
<option> ergol </option>
<option disabled> [ergol old] </option>
<option> ergolv01 </option>
<option> ergolv02 </option>
<option> ergolv03_4 </option>
<option> ergolv05 </option>
<option disabled> [dvorak] </option>
<option> dvorak42 </option>
<option> bepo42 </option>
<option> optimot42 </option>
<option> optimot </option>
</select>
<select id="geometry">
<option value="iso"> ISO </option>
<option value="ansi" selected> ANSI </option>
<option value="ol60"> TMx </option>
<option value="ol50"> 50% </option>
<option value="ol40"> 40% </option>
</select>
<select id="corpus">
<option> en </option>
<option selected> en+fr </option>
<option> fr </option>
</select>
</form>
</div>
<h3> Charge des doigts </h3>
<small><span id="load-left"></span> / <span id="load-right"></span></small>
<div id="load">
<canvas></canvas>
<table></table>
</div>
<h3> Digrammes à un doigt </h3>
<small><span id="sfu-all"></span></small>
<div id="sfu">
<canvas></canvas>
<table></table>
</div>
<h3> Touches doublées </h3>
<small><span id="sku-all"></span></small>
<div id="sku">
<canvas></canvas>
<table></table>
</div>
<h3> Achoppements </h3>
<div class="row">
<table></table>
<table id="unsupported"></table>
<table></table>
<table id="sfu-digrams"></table>
<table></table>
<table id="sku-digrams"></table>
<table></table>
</div>
<h3> Roulements </h3>
<small>
<span id="inward-all"></span>
/ <span id="outward-all"></span>
/ <span id="redirect-all"></span>
</small>
<div class="row">
<table></table>
<table id="inward"></table>
<table></table>
<table id="outward"></table>
<table></table>
<table id="redirect"></table>
<table></table>
</div>
<footer>
<small>
powered by <a href="https://fabi1cazenave.github.io/x-keyboard/">x-keyboard</a>
</small>
<a href="./">« ErgoL</a>
</footer>
</body>
</html>