-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
54 lines (53 loc) · 1.97 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>Airplane</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=0" />
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="full-screen" content="yes"/>
<meta name="screen-orientation" content="portrait"/>
<meta name="x5-fullscreen" content="true"/>
<meta name="360-fullscreen" content="true"/>
</head>
<style>
html, body, p, div {margin:0;padding:0;}
body {background-color: #000;font-size:4vmin;}
html, body {height: 100%}
.bar {margin:0 auto;margin-top:250px;height:4px;width:80%;border-radius:2px;overflow:hidden;background:#666;}
.bar i {display:block;width:0;height:4px;background-color:#999;}
p {margin-top:5px;text-align:center;color:#ddd;}
</style>
<body>
<div class="bar">
<i id="progress"></i>
</div>
<p id="percent">Loading..</p>
<script src='https://gw.alipayobjects.com/as/g/tiny/tiny/1.2.0/tiny.js'></script>
<script src='https://a.alipayobjects.com/g/tiny-plugins/tinyjs-plugin-bitmap-text/0.1.0/index.js'></script>
<script src='https://a.alipayobjects.com/g/tiny-plugins/tinyjs-plugin-audio/1.1.1/index.js'></script>
<script src='src/Util.js'></script>
<script src='src/Resource.js'></script>
<script src='src/Sound.js'></script>
<script src='src/Score.js'></script>
<script src='src/Button.js'></script>
<script src='src/PauseButton.js'></script>
<script src='src/Background.js'></script>
<script src='src/Hero.js'></script>
<script src='src/Enemy.js'></script>
<script src='src/Pickup.js'></script>
<script src='src/Bomb.js'></script>
<script src='src/GameOver.js'></script>
<script src='src/MainLayer.js'></script>
<script src='src/StartLayer.js'></script>
<script src='main.js'></script>
<script>
function bridgeReady(){
AlipayJSBridge.call("hideTitlebar");
}
window.AlipayJSBridge ? bridgeReady() : document.addEventListener('AlipayJSBridgeReady', function () {
bridgeReady();
});
</script>
</body>
</html>