-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·174 lines (150 loc) · 7.56 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!DOCTYPE html>
<html lang="en" itemscope itemtype="http://schema.org/WebPage">
<head prefix="og: http://ogp.me/ns#">
<title>Ah, Now I See...</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="description" content="Web VN about the girl.">
<meta name="author" content="Anthony Zheng">
<!--Android Meta Tags-->
<meta name="mobile-web-app-capable" content="yes">
<link rel="icon" sizes="192x192" href="img/"><!--192 x 192 Icon-->
<link rel="icon" sizes="128x128" href="img/"><!--128 x 128 Icon-->
<!--Apple Meta Tags-->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content=""> <!--App Title or Name-->
<link rel="apple-touch-icon" href="img/"><!--60 x 60 Icon-->
<link rel="apple-touch-icon" sizes="76x76" href="img/"><!--76 x 76 Icon-->
<link rel="apple-touch-icon" sizes="120x120" href="img/"><!--120 x 120 Icon-->
<link rel="apple-touch-icon" sizes="152x152" href="img/"><!--152 x 152 Icon-->
<!--Microsoft Tags-->
<meta name="msapplication-TileColor" content=""><!--Color of the tile on Windows. In hexadecimal format-->
<meta name="application-name" content=""/> <!-- App Title -->
<meta name="msapplication-tooltip" content=""/> <!--Small text on hover-->
<meta name="msapplication-starturl" content="http://"/> <!-- URL to start in -->
<meta name="msapplication-square70x70logo" content="img/" /><!--Image for Tile 70x70-->
<meta name="msapplication-square150x150logo" content="img/" /><!--Image for Tile 150x150-->
<meta name="msapplication-wide310x150logo" content="img/" /><!--Image for Tile 310x150-->
<meta name="msapplication-square310x310logo" content="img/" /><!--Image for Tile 310x310-->
<link rel="shortcut icon" href="img/favicon.ico"/><!--Favicon. Good tool for creating one: http://xiconeditor.com/ Create all sizes.-->
<link rel="canonical" href=""><!--Canonical URL of your webpage-->
<link rel="stylesheet" href="style/normalize.min.css">
<link rel="stylesheet" href="style/animate.min.css">
<link rel="stylesheet" href="style/font-awesome.min.css">
<link rel="stylesheet" href="style/monogatari.css">
<link rel="stylesheet" href="style/main.css">
<script src="js/jquery-2.1.4.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/aegis.js"></script>
<script src="js/strings.js"></script>
<script src="js/script.js"></script>
<script src="js/options.js"></script>
<script src="js/monogatari.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<!--Game Screen -->
<section id="game">
<div>
<audio type="audio/mpeg" data-component="music" ></audio>
<audio type="audio/mpeg" data-component="voice"></audio>
<audio type="audio/mpeg" data-component="sound"></audio>
<div data-ui="video" class="video-wrapper align-center vertical middle" data-component="video" data-ui="video-player">
<video type="video/mp4" data-ui="player" controls="true"></video>
<button data-action="close-video" data-string="Close">Close</button>
</div>
<div data-component="modal" data-ui="messages" class="middle">
<div data-ui="message-content">
</div>
<div class="horizontal align-center" data-ui="inner-menu">
<button data-action="close" data-close="messages" data-string="Close">Close</button>
</div>
</div>
</div>
<ul data-ui="quick-menu" class="align-right bottom right">
<span class="quick-button" data-action="back">back</span>
<span class="quick-button" data-action="distraction-free">window</span>
<span class="quick-button" data-action="open-menu" data-open="save">save</span>
<span class="quick-button" data-action="open-menu" data-open="load">load</span>
<span class="quick-button" data-action="open-menu" data-open="settings">setting</span>
<span class="quick-button" data-action="end">exit</span>
</ul>
<div data-ui="choices" class="vertical align-center middle">
</div>
<div data-ui="text">
<img data-ui="face">
<span data-ui="who"></span>
<p data-ui="say"></p>
</div>
</section>
<!-- Main Screen -->
<section data-menu="main" data-background="img/title.png">
<audio type="audio/mpeg" data-component="ambient"></audio>
<div class="vertical align-center bottom animated bounceIn" data-ui="inner-menu">
<button data-action="start" data-string="Start">Start</button>
<button data-action="open-menu" data-open="load" data-string="Load">Load</button>
<button data-action="open-menu" data-open="settings" data-string="Settings">Settings</button>
<button data-action="open-menu" data-open="help" data-string="Help">Help</button>
</div>
</section>
<!-- Save Screen -->
<section data-menu="save" data-background="">
<h2 data-string="Save">Save</h2>
<div data-ui="slots" class="horizontal align-center"></div>
<div class="horizontal align-center bottom animated bounceIn" data-ui="inner-menu">
<button data-action="back" data-string="Back">Back</button>
</div>
</section>
<!-- Load Screen -->
<section data-menu="load" data-background="">
<h2 data-string="Load">Load</h2>
<div data-ui="slots" class="horizontal align-center"></div>
<div class="horizontal align-center bottom animated bounceIn" data-ui="inner-menu">
<button data-action="back" data-string="Back">Back</button>
</div>
</section>
<!-- Settings Screen -->
<section data-menu="settings" data-background="" class="vertical align-center">
<h2 data-string="Settings">Settings</h2>
<div data-settings="audio">
<h3 data-string="Audio">Audio</h3>
<span data-string="Music">Music Volume:</span>
<input type="range" min="0.0" max="1.0" step="0.1" data-action="set-volume" data-target="music">
<span data-string="Sound">Sound Volume:</span>
<input type="range" min="0.0" max="1.0" step="0.1" data-action="set-volume" data-target="sound">
<span data-string="Voice">Voice Volume:</span>
<input type="range" min="0.0" max="1.0" step="0.1" data-action="set-volume" data-target="voice">
</div>
<div data-settings="language">
<h3 data-string="Language">Language</h3>
<div class="horizontal">
<select data-action="set-language">
<option value="English">English</option>
<option value="Español">Español</option>
</select>
<span class="fa fa-unsorted" data-select="set-language"></span>
</div>
</div>
<div class="horizontal align-center bottom animated bounceIn" data-ui="inner-menu">
<button data-action="back" data-string="Back">Back</button>
</div>
</section>
<!--Help Screen -->
<section data-menu="help" data-background="">
<h2 data-string="Help">Help</h2>
<div class="align-left padded">
<p data-string="AdvanceHelp">To advance through the game, click anywhere on the game screen or press the space key.</p>
<h3 data-string="QuickButtons">Quick Menu Buttons</h3>
<p><span class='fa fa-arrow-left'></span> <span data-string="BackButton">Back.</span></p>
<p><span class='fa fa-eye'></span> <span data-string="HideButton">Hide Text.</span></p>
<p><span class='fa fa-save'></span> <span data-string="SaveButon">Open the Save Screen.</span></p>
<p><span class='fa fa-undo'></span> <span data-string="LoadButton">Open the Load Screen.</span></p>
<p><span class='fa fa-gear'></span> <span data-string="SettingsButton">Open the Settings Screen.</span></p>
<p><span class='fa fa-times-circle-o'></span> <span data-string="QuitButton">Quit Game.</span></p>
</div>
<div class="horizontal align-center bottom animated bounceIn" data-ui="inner-menu">
<button data-action="back" data-string="Back">Back</button>
</div>
</section>
</body>
</html>