-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (87 loc) · 3.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
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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8" />
<title>Socka - Dance Everywhere</title>
<link rel="stylesheet" href="css/socka.css" />
</head>
<body>
<div id="gameContainer">
<input id="hiddenInput" type="text" style="position:absolute;left:-1000px;"></input>
<canvas id="game"></canvas>
</div>
<div id="information">
<div id="howto">
<h1>Controls</h1>
<div id="controls">
<table>
<tr>
<th colspan="2">Game</th>
</tr>
<tr>
<td>Fullscreen</td>
<td><kbd>F9</kbd></td>
</tr>
<tr>
<td>Reset Settings</td>
<td><kbd>F8</kbd></td>
</tr>
</table>
<table>
<tr>
<th colspan="2">Player 1</th>
</tr>
<tr>
<td>Back</td>
<td><kbd>← </kbd></td>
</tr>
<tr>
<td>Start</td>
<td><kbd>↵</kbd></td>
</tr>
<tr>
<td>Directions</td>
<td><kbd>←</kbd><kbd>↑</kbd><kbd>→</kbd><kbd>↓</kbd></td>
</tr>
</table>
<table>
<tr>
<th colspan="2">Player 2</th>
</tr>
<tr>
<td>Back</td>
<td><kbd>Q</kbd></td>
</tr>
<tr>
<td>Start</td>
<td><kbd>E</kbd></td>
</tr>
<tr>
<td>Directions</td>
<td><kbd>W</kbd><kbd>A</kbd><kbd>S</kbd><kbd>D</kbd></td>
</tr>
</table>
</div>
</div>
<p>These are the default settings. You can customize the mapping for your <em>keyboard</em> or <em>dancepad</em> from the option menu.</p>
<div id="about">
<h1>About</h1>
<p>Socka is a JavaScript dance and rythm game similar to Dance Dance Revolution. It supports up to two players.</p>
<p>It is compatible with the most common song formats (SM, DWI and SSC). The files can be retrieved from any compatible server over HTTP.</p>
<p>It also features support for gamepads and dancepads for more accurate gameplay.</p>
</div>
<div id="credits">
<h1>Acknowledgements</h1>
<p>Socka has been lovingly developped by Th3oSMith and Ningirsu. The original graphics are from <a href="https://himeija.com">Himeija</a>.</p>
<p>It is based on <a href="https://www.stepmania.com/">Stepmania</a> and reuse some of its graphic assets under the <a href="http://opensource.org/licenses/MIT">MIT License</a> and songs under the <a href="https://creativecommons.org/"> CC-NC license</a>.</p>
<p>The fonts used are <a href="https://www.dafont.com/fr/clemente-pd.font">Clemente</a> and <a href="https://fonts.google.com/specimen/Roboto?selection.family=Roboto">Roboto</a> (under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache 2.0 License</a>).
<p></p>
</div>
</div>
<script src="https://cdn.ravenjs.com/3.25.2/raven.min.js" crossorigin="anonymous"></script>
<script>
Raven.config('https://[email protected]/1213149').install()
</script>
<script type="text/javascript" src="/assets/app.bundle.js"></script>
</body>
</html>