-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 1.57 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! -由琼张修改-www.nwafulive.cn</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/Icon-App-60x60@2x.png" />
<link rel="apple-touch-icon" sizes="180x180" href="icons/Icon-App-60x60@3x.png" />
<link rel="apple-touch-icon" sizes="76x76" href="icons/Icon-App-76x76@1x.png" />
<link rel="apple-touch-icon" sizes="152x152" href="icons/Icon-App-76x76@2x.png" />
<link rel="apple-touch-icon" sizes="58x58" href="icons/Icon-App-29x29@2x.png" />
<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: '"E"可赛艇',
feedbackFunc: function() {
window.open('http://www.nwafulive.cn');
},
parent: document.querySelector('#screen')
});
</script>
</body>
</html>