forked from tusenpo/FlappyFrog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (42 loc) · 1.56 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
<!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;
}
</style>
</head>
<body>
<div id="screen"></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>