-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (54 loc) · 1.18 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
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<title>rounded</title>
<meta charset="utf-8" />
<script defer type="text/javascript" src="./dist/client.bundle.js"></script>
</head>
<body>
<main>
<div id="grid" class="rounded-grid">
</div>
</main>
<aside class="controls">
<div class="connectionCount">Connections: <span id="noOfConnections"></span></div>
<ol>
<li>
click any cell to focus it
</li>
<li>
use ↑, →, ↓ & ← to navigate
</li>
<li>
use numbers for shapes:
<ul>
<li>
1: <span class="controls-example controls-example--1"></span>
</li>
<li>
2: <span class="controls-example controls-example--2"></span>
</li>
<li>
3: <span class="controls-example controls-example--3"></span>
</li>
<li>
4: <span class="controls-example controls-example--4"></span>
</li>
<li>
5: <span class="controls-example controls-example--5"></span>
</li>
<li>
6: <span class="controls-example controls-example--6"></span>
</li>
</ul>
</li>
<li>
press 7 to erase a cell
</li>
<li>
press any character on<br>your keyboard to type
</li>
</ol>
</aside>
</body>
</html>