-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (58 loc) · 2.29 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
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Spirit Bonds Online</title>
<link rel="stylesheet" href="./main.css" />
<link rel="shortcut icon" href="favicon.ico" />
</head>
<body onload="resize()">
<div id="scene">
<img src="./images/bg-spirit-world-map.jpg" />
<img src="" id="fog" style="visibility: hidden;" />
<div id="icons"></div>
<div id="menu" style="visibility: hidden;">
<img src="" />
<div id="episodes">
<div class="icon">
<img src="" />
</div>
<h1></h1>
<h2>EPISODE LOG</h2>
<div style="width: 80%; margin: 5% auto;">
<input type="button" value="Introduction" onclick="chat.start('introduction')" />
<input type="button" value="Episode 1" onclick="chat.start('episode1')" />
<input type="button" value="Episode 2" onclick="chat.start('episode2')" />
<input type="button" value="Episode 3" onclick="chat.start('episode3')" />
<input type="button" value="Episode 4" onclick="chat.start('episode4')" />
<input type="button" value="Petal Acceptance" onclick="chat.start('petalacceptance')" />
</div>
<input type="button" value="close" onclick="menu.close()" />
</div>
</div>
<div id="chat" style="visibility: hidden">
<img src="" />
<div style="top: 71%;">
<div onclick="chat.continue()">
<h1></h1>
<p></p>
<hr />
</div>
<div class="response" onclick="chat.say(0)">
<p></p>
</div>
<div class="response" onclick="chat.say(1)">
<p></p>
</div>
<div class="response" onclick="chat.say(2)">
<p></p>
</div>
</div>
</div>
</div>
<div id="footer">You should definitely enable JavaScript =|</div>
<script src="./scripts/index.js"></script>
<script src="./scripts/menu.js"></script>
<script src="./scripts/chat.js"></script>
</body>
</html>