-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
38 lines (35 loc) · 1.13 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
<!DOCTYPE html>
<head>
<title>oledjs-designer</title>
<link href="https://fonts.googleapis.com/css?family=Rammetto+One" rel="stylesheet">
<link href="style.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div id="screen">
</div>
<div id="controls">
<h1>oled.js Designer</h1>
<BR> OLED width:
<select id="oledsize">
<option value="128x64">128 x 64</option>
<option value="128x32">128 x 32</option>
<option value="96x16">96 x 16</option>
<option value="64x48">64 x 48</option>
</select>
| Tool: <select id="tool">
<option value="draw">Pencil</option>
<option value="eraser">Eraser</option>
</select>
| <button id="clear">Clear all</button>
<BR><BR>
<button disabled>Upload image (.png)</button> Upload image buffer (.js.txt): <input type="file" id="uploadjs" />
<BR>
<BR>
<button id="addframe" disabled>Add animation frame</button>
<BR><BR>
<button id="download">Save image buffer (.js.txt)</button>
</div>
<script src="lib/file-saver/FileSaver.min.js"></script>
<script src="script.js"></script>
</body>
</html>