-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (66 loc) · 3.71 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
70
71
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="manifest" href="/manifest.json" >
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Cache-Control" content="no-siteapp" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0, minimal-ui" />
<title>My Adventure Game</title>
<meta name="application-name" content="My Adventure Game">
<meta name="description" content="Yet Another Adventrue Game, Powered by AVG.js.">
<meta name="keywords" content="Game, AVG, AVG.js">
<meta name="author" content="Your Name">
<!--<link rel="author" href="humans.txt">-->
<!--<link rel="copyright" href="copyright.txt">-->
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="format-detection" content="telphone=no, email=no" />
<meta name="theme-color" content="#000" />
<!-- UC Configure-->
<meta name="screen-orientation" content="landscape">
<meta name="full-screen" content="yes">
<meta name="browsermode" content="application"/>
<!-- QQ Configure-->
<meta name="x5-orientation" content="landscape"/>
<meta name="x5-fullscreen" content="true"/>
<meta name="x5-page-mode" content="app">
<meta name="msapplication-tap-highlight" content="no">
<meta name="HandheldFriendly" content="true">
<link rel="icon" href="icon64.png" sizes="64x64" type="image/png">
<link rel="icon" href="icon128.png" sizes="128x128" type="image/png">
<link rel="icon" href="icon192.png" sizes="192x192" type="image/png">
<link rel="shortcut icon" href="icon64.png" sizes="64x64" type="image/png">
<link rel="shortcut icon" href="icon128.png" sizes="128x128" type="image/png">
<link rel="shortcut icon" href="icon192.png" sizes="192x192" type="image/png">
<link rel="apple-touch-icon-precomposed" href="icon64.png" sizes="64x64" type="image/png">
<link rel="apple-touch-icon-precomposed" href="icon128.png" sizes="128x128" type="image/png">
<link rel="apple-touch-icon-precomposed" href="icon192.png" sizes="192x192" type="image/png">
<script type="text/javascript" src="libs/pixi.min.js" charset="utf-8"></script>
<script type="text/javascript" src="libs/avg.min.js" charset="utf-8"></script>
<!--<script src="//cdn.jsdelivr.net/eruda/1.2.0/eruda.min.js"></script>-->
<style>
* {
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
}
body {
background: white;
}
*:not(input, textarea) {
-webkit-touch-callout: none;
-webkit-user-select: none;
}
</style>
</head>
<body>
<div id="app"></div>
<!--<script>eruda.init();</script>-->
<script type="text/javascript" src="libs/index.min.js" charset="utf-8"></script>
<!--<script>(function(){var script=document.createElement('script');script.onload=function(){var stats=new Stats();document.body.appendChild(stats.dom);window.stats = stats;/*requestAnimationFrame(function loop(){stats.update();requestAnimationFrame(loop)});*/};script.src='//rawgit.com/mrdoob/stats.js/master/build/stats.min.js';document.head.appendChild(script);})()</script>-->
</body>
</html>