-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (32 loc) · 1.3 KB
/
index.html
File metadata and controls
33 lines (32 loc) · 1.3 KB
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
<html>
<head>
<title>ToasterPaint</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<div id="container">
<div id="photo-container" class="box">
<div id="photo"></div>
</div>
<div id="canvases" class="box"></div>
<div id="output" class="box">
<span>bitmap format:</span>
<input type="radio" id="binary" name="imgformat"/>
<label for="binary">binary</label>
<input type="radio" id="hex" name="imgformat" checked/>
<label for="hex">hex</label>
<p id="message">
ToasterPaint<br>
----<br>
Draw on the canvases to superimpose them on the preview photo.<br>
Click copy to copy the result to clipboard.<br>
Click load to load a bitmap from the clipboard. Must be in hex or binary format.<br>
Click reset to reset the canvas.<br>
----<br>
To change the photo and display positions, modify the constants in main.js<br>
</p>
</div>
</div>
<script src="main.js"></script>
</body>
</html>