-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
37 lines (35 loc) · 1.38 KB
/
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>
<title>VjPirate</title>
<meta charset="utf-8">
<link rel="stylesheet" href="src/style.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="grids">Grids</div>
<div id="preview"></div>
<div id="parameters">
<header>Parameters</header>
<button class="control active" id="grid-active">Active</button>
<div class="control active">Columns
<input type="range" class="control active" id="grid-cols"/>
</div>
<div class="control active">Rows
<input type="range" class="control active" id="grid-rows"/>
</div>
<div class="control active">Size
<input type="range" class="control active" id="grid-size"/>
</div>
</div>
<div id="loops">Loops</div>
<script src="node_modules/three/build/three.js"></script>
<script src="node_modules/osc/dist/osc-browser.min.js"></script>
<script src="node_modules/osc/dist/osc-chromeapp.min.js"></script>
<script src="src/Grid.js"></script>
<script src="src/Osc.js"></script>
<script src="src/InputManager.js"></script>
<script src="src/VjPirate.js"></script>
<script src="src/Gui.js"></script>
</body>
</html>