-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (31 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<title>SceneVR web client</title>
<script src="/vendor/three.js"></script>
<script src="/vendor/jquery.js"></script>
<script src="/vendor/stats.js"></script>
<script src="/vendor/pointer-lock-controls.js"></script>
<script src="/vendor/html2canvas.js"></script>
<script src="/vendor/three-vrrenderer.js"></script>
<script src="/vendor/obj-loader.js"></script>
<script src="http://simplewebrtc.com/latest.js"></script>
<script src="/js/bundle.js"></script>
<link href="/css/scenevr.css" rel="stylesheet">
</head>
<body>
<header>
<a href="//github.com/bnolan/scenevr-web">scene<br /><span>VR</span></a>
</header>
<div id="videos">
<video id="localVideo"></video>
<span id="remoteVideos"></span>
</div>
<script src="/webRTC.js"></script>
<div id="scene-view">
</div>
</body>
</html>