-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·41 lines (39 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<script src="scripts/penti.js"></script>
<title>PentiJS</title>
</head>
<body>
<div id='preview'>
:
</div>
<div id='hand'></div>
<pre>
Use the number keys 1, 2, 3, 4 and
any other key to simulate the hand.
---- # | SPACE |
-#-- # | A | #--- - | N
-##- # | B | -##- - | O
-#-# - | C | -### # | P
#--- # | D | -#-# # | Q
--#- - | E | --#- # | R
---# # | F | ---# - | S
##-- - | G | ###- # | T
#--# # | H | -### - | U
-#-- - | I | ##-# - | V
#--# - | J | #### # | W
#### - | K | ##-# # | X
--## - | L | ##-- # | Y
###- - | M | --## # | Z
</pre>
<script>
const penti = new Penti()
penti.start()
</script>
<style>
body { padding:30px; font-family: courier; font-size:14px;}
</style>
</body>
</html>