forked from bitcraftlab/p5.gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (33 loc) · 828 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
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script src="../../libraries/p5.js" type="text/javascript"></script>
<script src="../../libraries/quicksettings.js" type="text/javascript"></script>
<script src="../../libraries/p5.gui.js" type="text/javascript"></script>
<script src="sketch.js" type="text/javascript"></script>
<style>
html, body, .container {
height: 100%;
}
body {
padding: 0;
margin: 0;
}
#sketch1, #sketch2, #sketch3, #sketch4 {
position: relative;
width: 50%;
height: 50%;
float:left;
}
</style>
</head>
<body>
<div class="container">
<div id="sketch1"></div>
<div id="sketch2"></div>
<div id="sketch3"></div>
<div id="sketch4"></div>
</div>
</body>
</html>