-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
57 lines (49 loc) · 1.53 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
<!DOCTYPE html>
<html>
<head>
<title>I've Been Ghosting</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<link rel="icon" href="data:,">
<link rel="stylesheet" type="text/css" href="Game.css">
</head>
<body>
<div id="msg">▶</div>
<div id="wrap">
<div id="overlay"></div>
<div id="status"></div>
<div id="screen"></div>
<div id="sentence"></div>
<div id="controls">
<div id="commands">
<span data-name="Float to">👻</span>
<span data-name="Look at">👀</span>
<span data-name="Listen to">👂🏼</span>
<span data-name="Touch">👆🏼</span>
<span data-name="Whisper to">💭</span>
</div>
<div class="arrows"><span id="up">◁</span></div>
<div id="items" class="metal">
<div id="itemlist"></div>
</div>
<div class="arrows"><span id="down">▷</span></div>
</div>
</div>
<template id="person">
<div class="actor">
<div class="head"></div>
<div class="body"></div>
<div class="pack"></div>
<div class="feet"></div>
</div>
</template>
<script src="Logic.js"></script>
<script src="Util.js"></script>
<script src="Sprite.js"></script>
<script src="Actor.js"></script>
<script src="Ego.js"></script>
<script src="player-small.js"></script>
<script src="Sound.js"></script>
<script src="Game.js"></script>
<script>onload = () => new Game();</script>
</body>
</html>