-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (62 loc) · 1.34 KB
/
index.html
File metadata and controls
64 lines (62 loc) · 1.34 KB
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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Orthographic GUI Cam | Goo Engine</title>
<meta property="og:title" content="Orthographic GUI Cam"/>
<meta property="og:url" content="http://published.gooengine.com.s3-website-eu-west-1.amazonaws.com/7FaJ19lnS6q_7HNzAqv6vA/"/>
<meta property="og:updated_time" content="2013-11-19T06:24:19.809937"/>
<meta property="og:site_name" content="Goo Create"/>
<meta property="og:type" content="website"/>
<script src="lib/howler.min.js"></script>
<script src="lib/Tween.js"></script>
<script src="lib/hammer.js"></script>
<script src="lib/goo-require.js"></script>
<script src="js/loadScene.js"></script>
<style>
body {
background: black;
}
#goo {
position: absolute;
top: 0px;
left: 0px;
bottom: 0px;
right: 0px;
width: 100%;
height: 100%;
z-index:0;
}
#gui {
position: absolute;
top: 0px;
left: 0px;
bottom: 0px;
right: 0px;
width: 100%;
height: 100%;
z-index:50;
}
#loading {
position: absolute;
top: 50%;
left: 50%;
width: 100px;
height: 30px;
line-height: 30px;
font-size: 16px;
font-family: Helvetica, Arial;
color: white;
margin-left: -50px;
margin-top: -15px;
text-align: center;
}
</style>
</head>
<body>
<canvas id = "goo"></canvas>
<canvas id = "gui"></canvas>
<div id="loading">Loading...</div>
</body>
</html>