-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·68 lines (64 loc) · 2.24 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!-- based on https://gist.github.com/MAKIO135/eab7b74e85ed2be48eeb -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style>
body {
background-color: #000000;
margin: 0px;
overflow: hidden;
}
#info {
position: absolute;
top: 0px;
width: 100%;
color: #ffffff;
padding: 5px;
font-family: Monospace;
font-size: 13px;
font-weight: bold;
text-align: center;
}
a {
color: #ffffff;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r75/three.min.js"></script>
<script src="https://itp.nyu.edu/kinectron/kinectron.bundle.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.7/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.7/addons/p5.dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.7/addons/p5.sound.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
<div id="container"></div>
<div id="info">
Name:-->
<input type="text" id="name"> Other People:
<select id="other_people"></select>
<br>
<br>
<button type="button" id="previous">Previous Scene</button>
<input type="input" maxlength="3" style="text-align:center;" size="3" id="sceneNum">
<button type="button" id="next">Next Scene</button>
<br>-->
<br>
<button type="button" id="previous_plot_point"> Previous Plot Point</button>
<input type="input" maxlength="3" style="text-align:center;" size="50" id="plot_point">
<button type="button" id="next_plot_point"> Next Plot Point</button>
<br>
<br>
<button onclick="startRecord()" id="start_record">Start Record</button>
<button onclick="stopRecord()" id="stop_record">Stop Record</button>
</div>
<canvas id="canvas1" style="visible:false"></canvas>
<script src="pano_mouse.js"></script>
<script src="saving_stuff.js"></script>
<script src="key.js"></script>
<script src="skeleton.js"></script>
<script src="video.js"></script>
<script src="sketch.js"></script>
</body>
</html>