This repository has been archived by the owner on Apr 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathindex.html
88 lines (80 loc) · 4.26 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<title>The Musical Forest</title>
<meta name="description" content="Musical Forest">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0, shrink-to-fit=no">
<meta name="apple-touch-fullscreen" content="yes">
<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" />
<!-- Facebook Share -->
<meta property="og:url" content="https://forest.webvrexperiments.com" />
<meta property="og:type" content="website" />
<meta property="og:title" content="The Musical Forest" />
<meta property="og:description" content="Join users from around the world in a musical forest. A WebVR Experiment." />
<meta property="og:image" content="https://forest.webvrexperiments.com/static/img/fbshare.jpg" />
<!-- Twitter Share -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="The Musical Forest">
<meta name="twitter:description" content="Join users from around the world in a musical forest. A WebVR Experiment.">
<meta name="twitter:image" content="https://forest.webvrexperiments.com/static/img/twittershare.jpg">
<!-- Origin Trial Token, feature = WebVR, origin = https://webvrexperiments.com, expires = 2017-05-03 -->
<meta http-equiv="origin-trial" data-feature="WebVR" data-expires="2017-05-03" content="Allgoq39kmaNiIkhQWskjqassvbzrw3qS4XHzr+Q9UajnZMkgtHH1kWQK5JV5EgBDYynHxNdtmpF6pbE8cu4HwAAAABmeyJvcmlnaW4iOiJodHRwczovL3dlYnZyZXhwZXJpbWVudHMuY29tOjQ0MyIsImZlYXR1cmUiOiJXZWJWUiIsImV4cGlyeSI6MTQ5MzgxNzg5OCwiaXNTdWJkb21haW4iOnRydWV9">
<link rel="stylesheet" type="text/css" href="./build/style.css">
<link rel="icon" type="image/png" sizes="33x33" href="static/img/favicon.png">
<script src="config.js"></script>
</head>
<body>
<!-- SPLASH SCREEN -->
<div id="splash">
<div id="headphones" class="headphones">
<img src="static/img/Headphone.png" alt="headphone icon" class="icon">
<span class="text">Headphones Recommended</span>
</div>
<div id="enter-container">
<div id="loader">LOADING<img src="static/img/loader.gif"></div>
<div id="enterButton">
<div id="enter-360">No VR? Take a peek in 360 mode</div>
</div>
</div>
<div id="badges">
<div class="webvr-logo">
<a href="https://webvrexperiments.com" target="_blank"><img src="static/img/[email protected]" alt="WebVR Logo"></a>
</div>
<div class="pipe"></div>
<div class="friends-with">
<img src="static/img/[email protected]" alt="Friends With Google">
</div>
</div>
<div id="about-button" class="about-button visible">
?
</div>
<div id="about">
<div class="content">
<h1 class="about-head unselectable">The Musical Forest</h1>
<div class="description">
<p>
Join users from around the world in a musical forest. Tap or click a shape to play it. If you're using a headset like the HTC VIVE, you can add shapes too. This experiment demonstrates cross-device co-presence in VR, allowing anyone to join in, no matter what device they're using.
</p>
<p>
Technologies used: AFrame, Three.js, Tone.js, Node.js, PubSub
</p>
<p>
Made by Google Creative Lab. Check out other WebVR Experiments <a href="https://webvrexperiments.com/" target="_blank">here</a> and check out the open-source code on <a href="https://github.com/googlecreativelab/webvr-musicalforest" target="_blank">GitHub</a>.
</p>
</div>
<img src="static/img/aboutbg.gif" alt="about">
<div class="close xbutton" id="about-xbutton"></div>
</div>
</div>
<div id="legal">
<a href="https://www.google.com/intl/en/policies/privacy/" target="_blank">Privacy</a> & <a href="https://www.google.com/intl/en/policies/terms/" target="_blank">Terms</a>
</div>
</div>
<!-- MAIN -->
<script src="/build/main.js"></script>
<div id="spacer"></div>
</body>
</html>