-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
90 lines (80 loc) · 3.26 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>FEWA</title>
<!-- build:css(tmp/) c.css -->
<link rel="stylesheet" href="common.css">
<!-- endbuild -->
</head>
<body>
<canvas id="b"></canvas>
<div id="b1"></div>
<div id="b2"></div>
<div id="b3"></div>
<div id="f"></div>
<div id="cnt">
<div id="r">
<div id="hud">
LEVEL: <b id="lv"></b>
SCORE: <b id="sc"></b>
</div>
<canvas id="c"></canvas>
<div id="msg"></div>
<div id="hlp">
<h2>Controls</h2>
<p>Swap/Move elements: Click highlighted column to select an element and click to drop to another
column </p>
<p>Pause: <strong>P</strong>, Mute: <strong>M</strong>,<br/> Stop bg anim: <strong>B</strong><br/> (because
of performance issues on some devices)</p>
</div>
<div id="crd">
<h2>Credits</h2>
<p>Created by: <strong>Zoltan Pasztor</strong> & <strong>Csaba Tuncsik</strong></p>
<p>Audio Processing: [JSFXR](<a href="https://github.com/mneubrand/jsfxr" target="_blank">https://github.com/mneubrand/jsfxr</a>)
by [@markusneubrand](<a href="https://twitter.com/markusneubrand" target="_blank">https://twitter.com/markusneubrand</a>)
</p>
<p>Game sound inspired by: [@jackrugile](<a href="https://twitter.com/jackrugile" target="_blank">https://twitter.com/jackrugile</a>)
(<a href="http://codepen.io/jackrugile/blog/arcade-audio-for-js13k-games" target="_blank">http://codepen.io/jackrugile/blog/arcade-audio-for-js13k-games</a>)
</p>
<p>Game music: Sonant-X (<a href="https://github.com/nicolas-van/sonant-x" target="_blank">https://github.com/nicolas-van/sonant-x</a>) by @nicolas-van
</p>
<p>Game random number utility inspired by: # JS13KGames Boilerplate (<a
href="https://github.com/ooflorent/js13k-boilerplate/blob/master/src/rng.js" target="_blank">https://github.com/ooflorent/js13k-boilerplate/blob/master/src/rng.js</a>)
</p>
</div>
<div id="mnu">
<h1>★<span>FE<span>WA</span></span>★</h1>
<ul>
<li id="re">RESUME</li>
<li id="ng">NEW GAME</li>
<li id="hl">HELP</li>
<li id="cr">CREDITS</li>
</ul>
</div>
</div>
</div>
<!-- build:remove(tmp/) -->
<script src="scripts/stats.js"></script>
<!-- endbuild -->
<!-- build:js(tmp/) j.js -->
<script src="scripts/game.js"></script>
<script src="scripts/raf.js"></script>
<script src="scripts/utils.js"></script>
<script src="scripts/config.js"></script>
<script src="scripts/sprites.js"></script>
<script src="scripts/jsfxr.js"></script>
<script src="scripts/sonantx.js"></script>
<script src="scripts/music.js"></script>
<script src="scripts/audio.js"></script>
<script src="scripts/entity.js"></script>
<script src="scripts/particle.js"></script>
<script src="scripts/explosion.js"></script>
<script src="scripts/bullet.js"></script>
<script src="scripts/tower.js"></script>
<script src="scripts/brick.js"></script>
<script src="scripts/stars.js"></script>
<script src="scripts/core.js"></script>
<!-- endbuild -->
</body>
</html>