-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
39 lines (34 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>VR view</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="error" class="dialog">
<div class="wrap">
<h1 class="title">Error</h1>
<p class="message">An unknown error occurred.</p>
</div>
</div>
<div id="play-overlay">
<img src="images/ic_play_arrow_white_24dp.svg"/>
</div>
<a id="watermark" href="http://g.co/vr/view" target="_blank">
<img src="images/ic_info_outline_black_24dp.svg"/>
</a>
<script>
WebVRConfig = {
BUFFER_SCALE: 0.5,
TOUCH_PANNER_DISABLED: false
};
</script>
<script src="js/three.min.js"></script>
<script src="js/embed.min.js"></script>
</body>
</html>