-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathmagic.html
56 lines (50 loc) · 1.18 KB
/
magic.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Magic Paper</title>
<style>
body {
margin: 0;
padding: 0;
overflow: hidden;
}
#magic {
background: #000;
letter-spacing: 1px;
cursor: crosshair;
}
#status {
position: fixed;
bottom: 0;
width: 100%;
height: 4em;
line-height: 1.2;
background-color: #555;
font: 28px Helvetica;
padding: 2px 20px 2px 20px;
color: rgba(200, 200, 200, 0.9);
}
</style>
</head>
<body>
<canvas id="magic"></canvas>
<div id="status">
<span>
Add Clear Recognize Scroll
Trash
</span>
<br>
<span id="glyph">
</span>
<br>
<span id="special">
</span>
</div>
<script src="sketch.js" type="text/javascript"></script>
<script src="misc.js" type="text/javascript"></script>
<script src="canvas.js" type="text/javascript"></script>
<script src="glyphs.js" type="text/javascript"></script>
<script src="magic.js" type="text/javascript"></script>
</body>
</html>