html5中的常用meta及解释
viewport
默认视窗大小,是否允许缩放。
使用:
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, minimal-ui" />
apple-mobile-web-app-capable
是否启动webapp功能,隐藏safari工具栏和菜单栏
使用:
<meta name="apple-mobile-web-app-capable" content="yes" />
apple-mobile-web-app-status-bar-style
定义status bar的颜色
使用:
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
format-derection
是否对数字识别成电话和邮箱
使用
<meta name="format-derection" content="telephone=no,email=yes" />