forked from superguigui/threejs-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (32 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Awesome Experiment</title>
<link rel="stylesheet" href="styles/styles.css">
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
<script>
window.dbg = {};
</script>
</head>
<body>
<div id="game-alert">
<div id="ok-box">
<div id="ok-button">OK</div>
</div>
<div id="alert-text">
A probe (or god forbid the moon) has crashed! Feel free to keep launching or you can reload the browser for a fresh canvas.
</div>
</div>
<div id='launchbar-container'>
<div id='launchbar'>
</div>
</div>
<div class="three"></div>
<script src="assets/lib/dat-gui/build/dat.gui.min.js"></script>
<script src="assets/lib/jquery/dist/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<script src="assets/lib/greensock/src/minified/TweenMax.min.js"></script>
<script src="dist/main.js"></script>
</body>
</html>