-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
25 lines (22 loc) · 936 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PixelShank</title>
<link rel="stylesheet" href="css/base.css">
<script src="js/p5.js"></script>
<script src="js/addons/p5.dom.js"></script>
<script src="js/sketch.js"></script>
</head>
<body>
<div class="hide" id="toolbar">
<input type="file" id="image-loader-button" onchange="loadSystemImage('image-loader-button');">
<button id="clear-button" type="button" onclick="clearLines()">Clear</button>
<button id="undo-button" type="button" onclick="undo()">Undo</button>
<a class="button" href="#" id="save-button" download="pixelshank.png" onclick="saveImage()">Save as</a>
</div>
<!-- Init Image that supports loading an image-->
<input type="file" id="init-image-loader-button" onchange="loadSystemImage('init-image-loader-button');">
</body>
</html>