forked from hahaxixi/FlappyFrog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (69 loc) · 2.55 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
<!doctype html>
<html>
<head>
<title>Flappy Frog</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
<meta name="apple-mobile-web-app-title" content="Flappy Frog">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-touch-fullscreen" content="yes">
<link rel="apple-touch-icon" href="icons/[email protected]">
<link rel="apple-touch-icon" sizes="180x180" href="icons/[email protected]">
<link rel="apple-touch-icon" sizes="76x76" href="icons/[email protected]">
<link rel="apple-touch-icon" sizes="152x152" href="icons/[email protected]">
<link rel="apple-touch-icon" sizes="58x58" href="icons/[email protected]">
<link rel="shortcut icon" href="icons/[email protected]">
<style>
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
body {
background: #430;
text-align: center;
overflow: hidden;
}
#game {
display: inline-block;
}
#footer {
position: fixed;
bottom: 4px;
width: 100%;
font-size: small;
}
#footer a {
margin: 0 10px;
width: 100px;
text-decoration: none;
}
#footer a, #footer a:visited {
color: rgb(192, 68, 17);
}
</style>
</head>
<body>
<div id="game"></div>
<div id="footer">
<a href="/" target="_blank">Flappy Winnie</a>
<a href="/ninja/" target="_blank">切青蛙</a>
<a href="/bao/" target="_blank">切包子</a>
<a href="https://github.com/hahaxixi/FlappyFrog" target="_blank">Source Code</a>
</div>
<script src="lib/phaser.min.patched.js"></script>
<script src="js/require.js"></script>
<script src="js/global.js"></script>
<script src="js/utils.js"></script>
<script src="js/sounds.js"></script>
<script src="js/pipes.js"></script>
<script src="js/clouds.js"></script>
<script src="js/game.js"></script>
<script src="js/scene.js"></script>
<script src="js/main.js"></script>
<script>
require('main').run();;
</script>
</body>
</html>