-
Notifications
You must be signed in to change notification settings - Fork 131
/
index.html
61 lines (61 loc) · 2.22 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
<!doctype html>
<html>
<head>
<title>Excited!</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, user-scalable=no" />
<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]" />
<style>
body {
background: #430;
margin: 0;
padding: 0;
text-align: center;
overflow: hidden;
}
#screen {
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="screen"></div>
<div id="footer">
<a href="https://www.mohu.club/" target="_blank">膜乎</a>
<a href="https://www.ruhu.ml/" target="_blank">辱乎</a>
<a href="https://hahaxixi.github.io/FlappyFrog/" target="_blank">尝试新版</a>
</div>
<script src="phaser.min.js"></script>
<script src="main.js"></script>
<script>
initGame({
feedback: '"5"可奉告',
feedbackFunc: function() {
window.open('https://github.com/tusenpo/FlappyFrog/issues');
},
parent: document.querySelector('#screen')
});
</script>
</body>
</html>