-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (21 loc) · 821 Bytes
/
index.html
File metadata and controls
25 lines (21 loc) · 821 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sketch</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="libraries/p5.min.js"></script>
<script src="libraries/p5.sound.min.js"></script>
</head>
<body>
<script src="sketch.js"></script>
<form id="frm1">
X resolution<input type="number" name="xres" min="1" max="1000" /><br>
Y resolution<input type="number" name="yres" min="1" max="1000" /><br>
# Layers<input type="number" name="numLayers" min="1" max="256" /><br>
Separation<input type="number" name="sep" min="0.01" max="10.0" /><br>
<input type="button" onclick="onLoadParams()" value="Load">
</form>
</body>
</html>