-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
45 lines (45 loc) · 1.79 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="icon" type="image/png" href="media/pictures/favicon.ico">
<link rel="stylesheet" type="text/css" href="style/reset.css">
<link rel="stylesheet" type="text/css" href="style/animate.css">
<link rel="stylesheet" type="text/css" href="style/main.css">
<title>Cognitive Dissonance</title>
</head>
<body onload="CD.playGame()">
<div id="content">
<div id="title">
<h1><a href="#">Cognitive Dissonance</a></h1>
<h2>
<a href="http://carrotisland.nicklaroux.com">
Squirrel Island
</a> -
<a href="http://www.ludumdare.com/compo/2014/04/23/welcome-to-ludum-dare-29er/">
Ludum Dare 29
</a>
</h2>
</div>
<div id="game">
<div id="question"></div>
<div id="story"></div>
<div class="dialog hidden" id="leftDialog"></div>
<div class="dialog hidden" id="rightDialog"></div>
</div>
<div id="nav">
<p>Click anywhere to advance the story. When two people appear, type your thought to best your evil self.</p>
<p style="display: none;">
<button onclick="CD.resetContent()">Reset Content</button>
<button onclick="CD.advanceModule()">Advance Module</button>
</p>
</div>
</div>
<script type="text/javascript" src="https://code.createjs.com/soundjs-0.5.2.min.js"></script>
<script type="text/javascript" src="https://code.createjs.com/preloadjs-0.4.1.min.js"></script>
<script type="text/javascript" src="js/disableKeys.js"></script>
<script type="text/javascript" src="js/modules.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/assets.js"></script>
</body>
</html>