-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 954 Bytes
/
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
<!--
/*
* Based on Google AR example, copyright 2017 Google Inc:
* https://github.com/google-ar/three.ar.js/blob/master/examples/spawn-at-surface.html
*/
-->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Merry Christmas 2017</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" href="css/styles.css"/>
</head>
<body>
<div id="info">Tap to place a snowman. Then tap the snowman to wake him!</div>
<audio id="song" preload><source src="audio/frosty.mp3"></audio>
<script src="js/lib/three.js"></script>
<script src="js/lib/OBJLoader.js"></script>
<script src="js/lib/GPUParticleSystem.js"></script>
<script src="js/lib/Projector.js"></script>
<script src="js/lib/VRControls.js"></script>
<script src="js/lib/three.ar.js"></script>
<script src="js/index.js"></script>
</body>
</html>