分享一下,移动端页面开发,meta标签的一些设置。
代码实例如下:
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
|
<!-- 忽略识别邮箱,主要是针对安卓手机会自动将符合邮箱格式的字符串识别为邮箱地址-->
<
meta
content
=
"email=no"
name
=
"format-detection"
/>
<!-- 针对手持设备优化,主要是针对一些老的不识别viewport的浏览器,比如黑莓 -->
<
meta
name
=
"HandheldFriendly"
content
=
"true"
>
<!-- 微软的老式浏览器 -->
<
meta
name
=
"MobileOptimized"
content
=
"320"
>
<!-- uc强制竖屏 -->
<
meta
name
=
"screen-orientation"
content
=
"portrait"
>
<!-- QQ强制竖屏 -->
<
meta
name
=
"x5-orientation"
content
=
"portrait"
>
<!-- UC强制全屏 -->
<
meta
name
=
"full-screen"
content
=
"yes"
>
<!-- QQ强制全屏 -->
<
meta
name
=
"x5-fullscreen"
content
=
"true"
>
<!-- UC应用模式 -->
<
meta
name
=
"browsermode"
content
=
"application"
>
<!-- QQ应用模式 -->
<
meta
name
=
"x5-page-mode"
content
=
"app"
>
<!-- windows phone 点击无高光 -->
<
meta
name
=
"msapplication-tap-highlight"
content
=
"no"
>
|
原文发布时间为:2017-2-23
本文作者:admin
本文来自云栖社区合作伙伴“蚂蚁部落”,了解相关信息可以关注蚂蚁部落
原文链接:移动端meta标签设置总结