-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflap.html
40 lines (33 loc) · 1.05 KB
/
flap.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
<!DOCTYPE html>
<head>
<title>FlapFlap</title>
<link href="css/reset.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
</head>
<body>
<div id="gamecontainer">
<div id="gamescreen">
<div id="sky" class="animated">
<div id="flyarea">
<div id="ceiling" class="animated"></div>
<div id="player" class="bird animated"></div>
<div id="bigscore"></div>
<div id="scoreboard">>
<div id="replay"><img src="assets/replay.png" alt="replay"></div>
</div>
</div>
</div>
<div id="land" class="animated">
<div id="debug"></div>
</div>
</div>
</div>
<div class="boundingbox" id="playerbox"></div>
<div class="boundingbox" id="pipebox"></div>
<script src="js/jquery.min.js"></script>
<script src="js/jquery.transit.min.js"></script>
<script src="js/buzz.min.js"></script>
<script src="js/main.js"></script>
<script src="js/doppler.js"></script>
</body>
</html>