-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 783 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 783 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Parcel Sandbox</title>
<meta charset="UTF-8" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<h1>Pixel Blender</h1>
<p>A generative art proof-of-concept.</p>
<canvas id="myCanvas" height="512" width="512"></canvas><br />
<div id="inputGroup">
<button id="newImg">New Image</button>
<div id="control-box">
<button id="replaceBtn">Replace Pixel</button>
<label for="loopCheck">Loop?</label>
<input id="loopCheck" type="checkbox" />
</div>
<button id="testBtn">Red/Blue</button>
<button id="testBtn2">Fade2Black</button>
</div>
</div>
<script src="index.js"></script>
</body>
</html>