meta属性在HTML中占据了很重要的位置。如:针对搜索引擎的SEO,文档的字符编码,设置刷新缓存等。虽然一些网页可能没有使用meta,可是做为正规军,咱们仍是有必要了解一些meta的属性,而且可以熟练使用它们。javascript
一、name之viewporthtml
<meta name="viewport" content="">
说明:屏幕的缩放java
content的几个属性:
width viewport
的宽度[device-width | pixel_value]width
若是直接设置pixel_value
数值,大部分的安卓手机不支持,可是ios支持;
height – viewport
的高度 (范围从 223 到 10,000 )
user-scalable [yes | no]
是否容许缩放
initial-scale [数值]
初始化比例(范围从 > 0 到 10)
minimum-scale [数值]
容许缩放的最小比例
maximum-scale [数值]
容许缩放的最大比例
target-densitydpi
值有如下(通常推荐设置中等响度密度或者低像素密度,后者设置具体的值dpi_value
,另外webkit
内核已不许备再支持此属性)
-- dpi_value
通常是70-400//没英寸像素点的个数
-- device-dpi
设备默认像素密度
-- high-dpi
高像素密度
-- medium-dpi
中等像素密度
-- low-dpi
低像素密度ios
完整案例:web
<meta name="viewport" content="width=device-width,height=device-height, user-scalable=no,initial-scale=1, minimum-scale=1, maximum-scale=1,target-densitydpi=device-dpi ">
二、name之format-detection忽略电话号码和邮箱chrome
<meta name="format-detection" content="telephone=no">
说明:忽略页面中的数字识别为电话号码windows
<meta name="format-detection" content="email=no"/>
说明:忽略页面中的邮箱格式为邮箱
也能够写成:浏览器
<meta name="format-detection" content="telphone=no, email=no"/>
三、name之设置做者姓名及联系方式
说明:设置做者姓名及联系方式缓存
<meta name="author" contect="name, xxx@163.com" />
四、iOS 启动画面app
iPad 的启动画面是不包括状态栏区域的。
iPad 竖屏 768 x 1004(标准分辨率)
<link rel="apple-touch-startup-image" sizes="768x1004" href="/splash-screen-768x1004.png" />iPad 竖屏 1536x2008(Retina) <link rel="apple-touch-startup-image" sizes="1536x2008" href="/splash-screen-1536x2008.png" />iPad 横屏 1024x748(标准分辨率) <link rel="apple-touch-startup-image" sizes="1024x748" href="/Default-Portrait-1024x748.png" />iPad 横屏 2048x1496(Retina) <link rel="apple-touch-startup-image" sizes="2048x1496" href="/splash-screen-2048x1496.png" /> iPhone 和 iPod touch 的启动画面是包含状态栏区域的。 iPhone/iPod Touch 竖屏 320x480 (标准分辨率) <link rel="apple-touch-startup-image" href="/splash-screen-320x480.png" />iPhone/iPod Touch 竖屏 640x960 (Retina) <link rel="apple-touch-startup-image" sizes="640x960" href="/splash-screen-640x960.png" />iPhone 5/iPod Touch 5 竖屏 640x1136 (Retina) <link rel="apple-touch-startup-image" sizes="640x1136" href="/splash-screen-640x1136.png" /> <link rel="apple-touch-startup-image" href="Startup.png" /> 当用户点击主屏图标打开 WebApp 时,系统会展现启动画面,在未设置状况下系统会默认显示该网站的首页截图,固然这个体验不是很好
五、其余
<!-- 声明文档使用的字符编码 --> <meta charset='utf-8'> <!-- 优先使用 IE 最新版本和 Chrome --> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/> <!-- 页面描述 --> <meta name="description" content="不超过150个字符"/> <!-- 页面关键词 --> <meta name="keywords" content=""/> <!-- 搜索引擎抓取 --> <meta name="robots" content="index,follow"/> <!-- 启用360浏览器的极速模式(webkit) --> <meta name="renderer" content="webkit"> <!-- 避免IE使用兼容模式 --> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- 不让百度转码 --> <meta http-equiv="Cache-Control" content="no-siteapp" /> <!-- 针对手持设备优化,主要是针对一些老的不识别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"> <!-- 添加 RSS 订阅 --> <link rel="alternate" type=