# UC,QQ,Safari私有meta(不完全)
<!-- UC meta -->
<!-- UC 强制竖屏 -->
<meta name="screen-orientation" content="portrait">
<!-- UC 强制全屏 -->
<!--<meta name="full-screen" content="yes">-->
<!-- UC 应用模式 -->
<!--<meta name="browsermode" content="application"/>-->
<!-- UC 开启适应屏幕的排版方式 -->
<meta name="viewport" content="uc-fitscreen=yes" />
<!-- UC 标准模式排版 -->
<meta name="layoutmode" content="standard" />
<!-- QQ-X5浏览器 -->
<!-- QQ 强制竖屏 -->
<meta name="x5-orientation" content="portrait" />
<!-- QQ 强制全屏 -->
<!--<meta name="x5-fullscreen" content="true" />-->
<!-- QQ 应用模式 -->
<!--<meta name="x5-page-mode" content="app" />-->
<!-- iPhone Safari -->
<!-- 允许全屏 -->
<meta content=”yes” name=”apple-mobile-web-app-capable” />
<!-- 全屏模式下顶部状态栏颜色 黑色 -->
<meta content=”black” name=”apple-mobile-web-app-status-bar-style” />
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23