-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (50 loc) · 2.07 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" href="css/index.css" />
</head>
<body onload="game.startBouncer()">
<!-- audio credits freesounds.org -->
<audio id="sound_start">
<source src="snd/170156__timgormly__8-bit-powerup2.ogg" type="audio/ogg">
<source src="snd/170156__timgormly__8-bit-powerup2.mp3" type="audio/mp3">
</audio>
<audio id="sound_loose">
<source src="snd/170157__timgormly__8-bit-wind-down.ogg" type="audio/ogg">
<source src="snd/170157__timgormly__8-bit-wind-down.mp3" type="audio/mp3">
</audio>
<audio id="sound_bounce">
<source src="snd/170164__timgormly__8-bit-jump.ogg" type="audio/ogg">
<source src="snd/170164__timgormly__8-bit-jump.mp3" type="audio/mp3">
</audio>
<audio id="sound_bounce1">
<source src="snd/170163__timgormly__8-bit-jump1.ogg" type="audio/ogg">
<source src="snd/170163__timgormly__8-bit-jump1.mp3" type="audio/mp3">
</audio>
<audio id="sound_loose1">
<source src="snd/170964_timgormly_metal-ping1.ogg" type="audio/ogg">
<source src="snd/170964_timgormly_metal-ping1.mp3" type="audio/mp3">
</audio>
<audio id="sound_balloon">
<source src="snd/257221__javierzumer__8bit-power-down.ogg" type="audio/ogg">
<source src="snd/257221__javierzumer__8bit-power-down.mp3" type="audio/mp3">
</audio>
<audio id="sound_stretch">
<source src="snd/Ballon.ogg" type="audio/ogg">
<source src="snd/Ballon.mp3" type="audio/mp3">
</audio>
<audio id="sound_inflate">
<source src="snd/257232__javierzumer__retro-shot-blaster.ogg" type="audio/ogg">
<source src="snd/257232__javierzumer__retro-shot-blaster.mp3" type="audio/mp3">
</audio>
<audio id="sound_fall">
<source src="snd/210205_augdog_falling.ogg" type="audio/ogg">
<source src="snd/210205_augdog_falling.mp3" type="audio/mp3">
</audio>
<script type="text/javascript" src="mySize.js"></script>
<script type="text/javascript" src="roundRect.js"></script>
<script type="text/javascript" src="ui.js"></script>
<script type="text/javascript" src="bouncer.js"></script>
</body>
</html>