24ab4634ea83e375ed631193221438d4b0fd1e3b
[featherfall2.git] / src / index.html
1 <!DOCTYPE html>
2 <html lang="en"
3 data-appid="com.yukkurigames.featherfall">
4 <head>
5 <title>Feather Fall</title>
6 <meta charset="utf-8" />
7 <meta name="viewport"
8 content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
9 <meta name="apple-mobile-web-app-capable" content="yes">
10 <!-- <meta name="apple-mobile-web-app-status-bar-style"
11 content="black-translucent" />
12 <link rel=icon href=data/images/icons.ico
13 sizes="16x16 32x32 64x64 128x128 256x256"
14 type="image/vnd.microsoft.icon">
15 <link rel=icon href=data/images/icons.icns
16 sizes="16x16 32x32 64x64 128x128 256x256"
17 >
18 -->
19 <link rel="stylesheet" href="yuu/data/yuu.css" type="text/css" />
20 <link rel="stylesheet" href="main.css" type="text/css" />
21 <script type="text/javascript" src="ext/gl-matrix.js"></script>
22 <script type="text/javascript" src="ext/gamepad.js"></script>
23 <script type="text/javascript" src="ext/hammer.js"></script>
24 <script type="text/javascript" src="ext/string-lerp.js"></script>
25 <script type="text/javascript" src="yuu/pre.js"></script>
26 <script type="text/javascript" src="yuu/yf.js"></script>
27 <script type="text/javascript" src="yuu/yT.js"></script>
28 <script type="text/javascript" src="yuu/core.js"></script>
29 <script type="text/javascript" src="yuu/input.js"></script>
30 <script type="text/javascript" src="yuu/ce.js"></script>
31 <script type="text/javascript" src="yuu/gfx.js"></script>
32 <script type="text/javascript" src="yuu/rdr.js"></script>
33 <script type="text/javascript" src="yuu/audio.js"></script>
34 <script type="text/javascript" src="yuu/director.js"></script>
35 <script type="text/javascript" src="yuu/storage.js"></script>
36 <script type="text/javascript" src="main.js"></script>
37 </head>
38
39 <body>
40 <canvas id="yuu-canvas" data-yuu-width=4 data-yuu-height=3 data-yuu-resize>
41 </canvas>
42 <div id="yuu-error" class="yuu-overlay"
43 data-yuu-animation="yuu-from-top"
44 data-yuu-dismiss-key="escape">
45 <div data-yuu-command="dismiss" tabindex=0></div>
46 <p>There was a problem. Sorry about that.</p>
47 <p id="yuu-error-message"></p>
48 <h2>Error Log</h2>
49 <pre id="yuu-error-stack">
50 </pre>
51 </div>
52 <div id="yuu-fatal-error" class="yuu-overlay">
53 <p>There was a serious problem. You'll have to restart. Sorry
54 about that.</p>
55 <p id="yuu-fatal-error-message"></p>
56 <p>
57 Supported browsers include recent versions of
58 <a href="http://www.mozilla.org/firefox/">Mozilla Firefox</a>
59 and <a href="http://www.google.com/chrome/">Google Chrome</a>
60 on most desktop computers,
61 <a href="https://www.google.com/intl/en/chrome/browser/mobile/android.html">Chrome
62 for Android</a>, and Safari on Mac OS X 10.7 and later
63 <a href="https://discussions.apple.com/thread/3300585?start=0">if
64 you enable WebGL manually</a>.
65 </p>
66 <h2>Error Log</h2>
67 <pre id="yuu-fatal-error-stack">
68 </pre>
69 </div>
70 <div id="preferences" class="yuu-overlay"
71 data-yuu-animation="yuu-from-top-right"
72 data-yuu-dismiss-key="f10 escape">
73 <div data-yuu-command="dismiss" tabindex=0></div>
74 <h1>Feather Fall</h1>
75 <table class="yuu-options">
76 <tr>
77 <td>
78 <input type="checkbox" data-yuu-command="mute" id="mute">
79 <label for="mute" title="Toggle audio mute (Control+S)"></label>
80 </td>
81 <td>
82 <label for="volume">Volume</label>
83 </td>
84 <td>
85 <input type="range" data-yuu-command="volume" id="volume"
86 min="0" max="1.0" step="0.05" style="width: 95%">
87 </td>
88 </tr>
89 <tr>
90 <td>
91 </td>
92 <td>
93 <label for="volume">Music</label>
94 </td>
95 <td>
96 <input type="range" data-yuu-command="musicVolume" id="musicVolume"
97 min="0" max="1.0" step="0.05" style="width: 95%">
98 </td>
99 </tr>
100 <tr>
101 <td>
102 <input type="checkbox" data-yuu-command="fullscreen"
103 id="fullscreen">
104 <label for="fullscreen" title="Toggle fullscreen (F11)"></label>
105 </td>
106 <td colspan=2>
107 <label for="fullscreen">Fullscreen</label>
108 </td>
109 </tr>
110 </table>
111 <p style="text-align: center">Press F12 to take a screenshot.</p>
112 </div>
113 <div id="colophon" class="yuu-overlay"
114 data-yuu-animation="yuu-from-top"
115 data-yuu-dismiss-key="escape">
116 <div data-yuu-command="dismiss" tabindex=0></div>
117 <h1>Feather Fall</h1>
118 <dl>
119 <dt>Designed &amp; Implemented</dt>
120 <dd>Yukkuri Games</dd>
121 <dt>Art, Design</dt>
122 <dd>Jessicatz Fairymeadow</dd>
123 <dt>Design, Programming</dt>
124 <dd>Joe Wreschnig</dd>
125 <dt>Additional Programming</dt>
126 <dd>
127 Brandon Jones &amp; Colin MacKenzie IV
128 (<a href="http://glmatrix.net/">glMatrix</a>)
129 </dd>
130 <dd>
131 Christoph Burgmer
132 (<a href="https://github.com/cburgmer/ayepromise">ayepromise</a>)
133 </dd>
134 <dd>
135 Jorik Tangelder
136 (<a href="http://eightmedia.github.io/hammer.js/">Hammer.js</a>)
137 </dd>
138 <dt>Fonts</dt>
139 <dd>
140 Carrois Type Design
141 (<a href="http://www.carrois.com/en/fira-3-1/">Fira</a>)
142 </dd>
143 <dd>
144 Dave Gandy
145 (<a href="http://fortawesome.github.io/">Font Awesome</a>)
146 </dd>
147 </dl>
148 <hr>
149 <div style="text-align: center">
150 <p>
151 Copyright &copy;2009, 2014
152 <a href="http://yukkurigames.com/">Yukkuri Games</a>
153 and others
154 </p>
155 <p>
156 This program is free software; you can redistribute it and/or
157 modify it under the terms of the GNU General Public License as
158 published by the Free Software Foundation; either
159 <a href="http://www.gnu.org/licenses/gpl-2.0.html">version
160 2 of the License</a>, or (at your option)
161 <a href="https://www.gnu.org/copyleft/gpl.html">any later version</a>.
162 </p>
163 </div>
164 <hr>
165 <p id="yuu-licensing" data-yuu-command="licensing">
166 View Complete Licensing Text
167 </p>
168 </div>
169
170 <noscript>
171 <div class="yuu-overlay" style="display: block">
172 <p>
173 This game requires JavaScript to play. It's a fun game, and
174 we hope you take your time to enable JS and try it.
175 </p>
176 <p>
177 We promise it doesn't contain any remote tracking cookies or
178 bugs, load any external scripts, or do any of the things
179 you've probably disabled JavaScript to avoid.
180 </p>
181 <p>
182 No, we don't even load the things people lie about when they
183 say they aren't tracking you: No Google APIs, no content
184 distribution network proxies, no analytics scripts. Just the
185 game.
186 </p>
187 <hr>
188 <ul class="link-footer">
189 <li><a href="http://yukkurigames.com/">Yukkuri Games</a>
190 </ul>
191 </div>
192 </noscript>
193 </body>
194 </html>