-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
40 lines (40 loc) · 1.64 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
<html>
<head>
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<title>Pixi-Live2D</title>
<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="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0, minimal-ui" />
<!-- UC -->
<meta name="screen-orientation" content="landscape">
<meta name="full-screen" content="yes">
<meta name="browsermode" content="application"/>
<!-- QQ -->
<meta name="x5-orientation" content="landscape"/>
<meta name="x5-fullscreen" content="true"/>
<meta name="x5-page-mode" content="app">
<!-- windows phone 点击无高光 -->
<meta name="msapplication-tap-highlight" content="no">
<meta name="HandheldFriendly" content="true">
<meta name="MobileOptimized" content="320" />
<style>
* {
margin: 0;
padding: 0;
border: 0;
}
body {
background: grey;
}
</style>
</head>
<body>
<div id="app"></div>
<p>click head to sing a song; click body to emit a motion<p>
<script type="text/javascript" src="index.js" charset="utf-8"></script>
</body>
</html>