html5手机网站需要加的那些meta/link标签,html5 meta全解

一、大众机型常用meta标签name的设置1、name之viewport<meta name="viewport" content="">说明:屏幕的缩放

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 低像素密度

完整案例:

<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 ">2、name之format-detection忽略电话号码和邮箱<meta name="format-detection" content="telephone=no">说明:忽略页面中的数字识别为电话号码<meta name="format-detection" content="email=no"/>

说明:忽略页面中的邮箱格式为邮箱

也可以写成:

<meta name="format-detection" content="telphone=no, email=no"/>3、name之设置作者姓名及联系方式

说明:设置作者姓名及联系方式

<meta name="author" contect="name, xxx@163.com" />

4、其他

<!– 声明文档使用的字符编码 –> <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="application/rss+xml" title="RSS" href="/rss.xml"/> <!– 添加 favicon icon –> <link rel="shortcut icon" type="image/ico" href="/favicon.ico"/> <!– sns 社交标签 begin –> <!– 参考微博API –> <meta property="og:type" content="类型" /> <meta property="og:url" content="URL地址" /> <meta property="og:title" content="标题" /> <meta property="og:image" content="图片" /> <meta property="og:description" content="描述" /> <!– sns 社交标签 end –> <!– Windows 8 磁贴颜色 –> <meta name="msapplication-TileColor" content="#000"/> <!– Windows 8 磁贴图标 –> <meta name="msapplication-TileImage" content="icon.png"/> <!– windows phone 点击无高光 –> <meta name="msapplication-tap-highlight" content="no">

二、ios系统的meta/link设置:去陌生的街角,去做一切我们曾经或现在也很想做的事情,

html5手机网站需要加的那些meta/link标签,html5 meta全解

相关文章:

你感兴趣的文章:

标签云: