-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (58 loc) · 1.32 KB
/
index.html
File metadata and controls
61 lines (58 loc) · 1.32 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Zombie shooter WIP | Goo Engine</title>
<meta property="og:title" content="Boiler Plate"/>
<meta property="og:url" content="/"/>
<meta property="og:updated_time" content="2013-11-26T05:25:19.501224"/>
<meta property="og:site_name" content="Goo Create"/>
<meta property="og:type" content="website"/>
<script src="lib/howler.min.js"></script>
<script src="lib/ammo.js"></script>
<script src="lib/goo-require.js"></script>
<script src="js/sphereTriangleTest.js"></script>
<style>
body {
background: black;
}
#goo {
position: absolute;
top: 0px;
left: 0px;
bottom: 0px;
right: 0px;
width: 100%;
height: 100%;
}
#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;
}
#crosshair {
position: absolute;
z-index: 21;
left: 50%;
top: 50%;
margin-left: -8px;
margin-top: -5px;
user-select: none;
}
</style>
</head>
<body>
<div id="loading">Loading...</div>
<div id="crosshair" ondragstart="return false;" onselectstart="return false;">+</div>
</body>
</html>