- 优先使用最新ie和chrome
|
|
- 360使用webkit内核(极速模式)
|
|
- 禁止百度转码
|
|
viewport
1
<meta name ="viewport" content ="width=device-width,initial-scale=1.0,maximum-scale=1,user-scalable=no" />
content属性的详细介绍:
禁止自动识别(电话号码,日期,地址,email)
1
<meta name="format-detection" content="telephone=no,address=no,date=no,email=no">
ios相关
添加到主屏后的标题
1
<meta name="apple-mobile-web-app-title" content="标题">
添加到主屏后的图标
1
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/apple-touch-icon.png" />
rel
取值:apple-touch-icon
图片自动处理成圆角和高光等效果apple-touch-icon-precomposed
禁止系统自动添加效果,直接显示原图
sizes
默认57x57从主屏启动时启动画面
1
<link rel="apple-touch-startup-image" sizes="768x1004" href="/splash-screen.png" />
sizes
默认320x480- iPad 的启动画面是不包括状态栏区域的, iphone包含状态栏区域
启用webapp模式
1
<meta name="apple-mobile-web-app-capable" content="yes" />
设置状态栏背景颜色(webapp模式启用时生效)
1
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
content
取值:default
默认black
黑色black-translucent
黑色半透明 如果设置为default
或black
,网页内容从状态栏底部开始。 如果设置为black-translucent
,网页内容充满整个屏幕,顶部会被状态栏遮挡。
添加智能 App 广告条 Smart App Banner
1
<meta name="apple-itunes-app" content="app-id=myAppStoreID, affiliate-data=myAffiliateData, app-argument=myURL">
android 相关
chrome地址栏和状态栏变色
1
<meta name="theme-color" content="#db5945">
wp 相关
磁贴颜色
1
<meta name="msapplication-TileColor" content="#000"/>
磁贴图标
1
<meta name="msapplication-TileImage" content="icon.png"/>
点击无高光
1
<meta name="msapplication-tap-highlight" content="no">
其它
|
|