挪移端meta行的汇总-
<meta name="viewport"
content="width=device-width, initial-scale=1, user-scalable=no, minimal-ui" />
width: viewport 的宽度 (范畴从 200 到 10,000 ,默许为 980 像素 )
height: viewport 的高度 (范畴从 223 到 10,000 )
initial-scale: 初始的缩放比例 (范畴从>0到 10 )
minimum-scale: 允许会员缩放到的最小比例
maximum-scale: 允许会员缩放到的最大比例
user-scalable: 会员可否可以手动缩放
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="HandheldFriendly" content="true">
<meta name="MobileOptimized" content="320">
<meta name="screen-orientation" content="portrait">
<meta name="x5-orientation" content="portrait">
<meta name="full-screen" content="yes">
<meta name="x5-fullscreen" content="true">
<meta name="browsermode" content="application">
<meta name="x5-page-mode" content="app">
<meta name="msapplication-tap-highlight" content="no">
1. apple-touch-icon
< link rel= "apple-touch-icon" sizes= "76x76" href= "touch-icon-ipad.png">
要是 apple-mobile-web-app-capable 设定为 yes 了,
那么在iphone机的safari上可以通过增加到主屏按钮将网站增加到主屏幕上。
而设定响应 apple-touch-icon 标签,则增加到主屏上的图标就会运用我们指定的图片。
2. apple-touch-startup-image
< link rel= "apple-touch-startup-image" href= "/startup.png">
基于 apple-mobile-web-app-capable 设定为 yes ,
可认为WebApp设定一个相似NativeApp的启动画面。
和 apple-touch-icon 不一样,
apple-mobile-web-app-capable 不支撑sizes属性,
要运用media来加载不一样的启动画面。
// iPhone
// iPhone Retina
"apple-touch-startup-image-640x920.png" media="(device-width: 320px) and (-webkit-device-pixel-ratio: 2)"
rel="apple-touch-startup-image" />
以上就是挪移端meta行的汇总的细致内容,更多请关注 百分百源码网 其它相干文章!