在介绍移动端特有 meta 标签以前,先简单说一下 HTML meta 标签的一些知识。
meta 标签包含了 HTTP 标题信息(http-equiv) 和页面描述信息(name)。html
http-equiv:
该枚举的属性定义,能够改变服务器和用户代理行为的编译。编译的值取content 里的内容。简单来讲便可以模拟 HTTP 协议响应头。
最多见的大概属于Content-Type
了,设置编码类型。如ios
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
H5中能够简化为web
<meta charset="utf-8">
http-equiv常见还有其它以下等(合理使用可增长 SEO 收录)。segmentfault
name:
该属性定义了文档级元数据的名称。用于对应网页内容,便于搜索引擎查找分类,如 keywords, description; 也可使用浏览器厂商自定义的 meta, 如 viewport;windows
可视区域的定义,如屏幕缩放等。告诉浏览器如何规范的渲染网页。浏览器
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
上一章节中已经详细讲解过了,这边就再也不重复了。缓存
对电话号码的识别服务器
<meta name="format-detection" content="telephone=no" />
启用 webapp 模式, 会隐藏工具栏和菜单栏,和其它配合使用。cookie
<meta name="apple-mobile-web-app-capable" content="yes" />
在webapp模式下,改变顶部状态条的颜色。app
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
default(白色,默认) | black(黑色) | black-translucent(半透明)
注意:若值为“black-translucent”将会占据页面位置,浮在页面上方(会覆盖页面 20px 高度, Retina 屏幕为 40px )。
在webapp下,指定放置主屏幕上 icon 文件路径;
<link rel="apple-touch-icon" href="touch-icon-iphone.png"> <link rel="apple-touch-icon" sizes="76x76" href="touch-icon-ipad.png"> <link rel="apple-touch-icon" sizes="120x120" href="touch-icon-iphone-retina.png"> <link rel="apple-touch-icon" sizes="152x152" href="touch-icon-ipad-retina.png">
默认 iphone 大小为 60px, ipad 为 76px, retina 屏乘2;
如没有一致尺寸的图标,会优先选择比推荐尺寸大,可是最接近推荐尺寸的图标。
ios7之前系统默认会对图标添加特效(圆角及高光),若是不但愿系统添加特效,则能够用apple-touch-icon-precomposed.png代替apple-touch-icon.png
在 webapp 下,设置启动时候的界面;
<link rel="apple-touch-startup-image" href="/startup.png" />
不支持 size 属性,可使用 media query 来控制。iphone 和 touch 上,图片大小必须是 230*480 px,只支持竖屏;
<!-- 启用360浏览器的极速模式(webkit) --> <meta name="renderer" content="webkit"> <!-- 避免IE使用兼容模式 --> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- 针对手持设备优化,主要是针对一些老的不识别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">
因此,通常新建页面的时候,能够采用以下结构, 再依据本身的实际须要添加所需便可。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="format-detection"content="telephone=no" /> <title>Demo</title> </head> <body> <!-- code here --> </body> </html>