-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (32 loc) · 1.17 KB
/
index.html
File metadata and controls
34 lines (32 loc) · 1.17 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
<!DOCTYPE html>
<!-- Kangming Deng && Amy Yu-->
<html>
<head>
<title>Social Hacks: Mental Health</title>
<link rel="stylesheet" type="text/css" href="design.css" />
<script type = "text/javascript" src = "vnEngine.js"></script>
<script type = "text/javascript" src = "gfxPreload.js"></script>
<script type = "text/javascript" src = "storyScript.js"></script>
</head>
<body onload = "preloadGFX(images); setUpStory();">
<div id = "frame" onclick = "gameVN.play();">
<div id = "day"></div>
<div id = "chars"></div>
<img id = "prevCharState" src = "" />
<div id = "fx"></div>
<div id = "txtBox">
<img id = "avatar" src = "" />
<div id = "nameBox">
<span id = "nameBoxTxt"></span>
</div>
<div id = "txt"></div>
</div>
<div id = "choices"></div>
<div id = "menu">
<div id = "startBtn" onclick = "gameVN.inquiring = false;">
<span id = "startBtnTxt">Start</span>
</div>
</div>
</div>
</body>
</html>