-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
64 lines (54 loc) · 2.17 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Attachment</title>
<!-- disable native mobile pinch-to-zoom, replacing with the Goo Engine zoom -->
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta property="og:title" content="Attachment"/>
<meta property="og:url" content="http://www.funzaga.com/goodemos/Attachment/"/>
<meta property="og:updated_time" content="2013-12-07T17:57:06.581038"/>
<meta property="og:site_name" content="Goo Create"/>
<meta property="og:type" content="website"/>
<link rel="stylesheet" type="text/css" href="style/style.css">
<script src="lib/jquery-1.10.2.min.js"></script>
<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>
</head>
<body>
<div id = "gui">
<img id = "cursor" />
<div id = "menu">Main Menu<br/>
<ul>
<li id = "playButton">Play</li>
<li id = "instructionsButton">Instructions</li>
<li id = "creditsButton">Credits</li>
</ul>
</div>
<div id = "instructionsMenu">
</div>
<div id = "creditsMenu">
</div>
<div id="loadingOverlay">
<div class="loadingMessage">
<h2>Loading...</h2>
<div class="progressBar">
<div class="progress"></div>
</div>
</div>
</div>
</div>
<div id="shareButtons">
<a href="https://www.facebook.com/sharer/sharer.php?u=" onclick="javascript:window.open(this.href+location.href,
this.href, 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=400,width=500');return false;"><img src="icons/facebook.png"></a>
<a href="https://plus.google.com/share?url=" onclick="javascript:window.open(this.href+location.href,
this.href, 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><img src="icons/googleplus.png"></a>
<a href="https://twitter.com/share?url=" onclick="javascript:window.open(this.href+location.href,
this.href, 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=300,width=600');return false;"><img src="icons/twitter.png"></a>
<div id="shareButtons">
</body>
</html>