-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
42 lines (33 loc) · 1.42 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
<index>
<head>
<title>j360</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"/>
<!-- 3d scripts section -->
<script src="js/three.min.js"></script>
<script type='text/javascript' src='js/OrbitControls.js'></script>
<!-- movie capture section -->
<script src="js/CCapture.js"></script>
<!-- Include tar.js if you want to export PNG or JPEG -->
<script src="js/tar.js"></script>
<!-- Include download.js for easier file download -->
<script src="js/download.js"></script>
<!-- 360 capture section -->
<script src="js/CubemapToEquirectangular.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-89125623-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body style="overflow:hidden;margin:0;padding:0">
<div class="container" style="position:fixed;width:100%;height:100%;top:0;left:0"></div>
<div class="buttonHolder" style="position:relative;text-align:center;">
<button class="startButton" onclick="startCapture360()">Start Capture</button>
<button class="saveButton" onclick="stopCapture360()">Stop Capture</button>
</div>
<script src="js/j360.js"></script>
</body>
</index>