Last active
August 29, 2015 14:05
-
-
Save shenduxian1/e6f05ef851c35889223a to your computer and use it in GitHub Desktop.
webapp空白页meta标签收录
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<!-- 设置宽度为设备的宽度,默认不缩放,不允许用户缩放(即禁止缩放),在网页加载时隐藏地址栏与导航栏(ios7.1新增) --> | |
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, minimal-ui"/> | |
<!-- 是否启动webapp功能,会删除默认的苹果工具栏和菜单栏。 --> | |
<meta name="apple-mobile-web-app-capable" content="yes"/> | |
<!-- 当启动webapp功能时,显示手机信号、时间、电池的顶部导航栏的颜色。默认值为default(白色),可以定为black(黑色)和black-translucent(灰色半透明)。这个主要是根据实际的页面设计的主体色为搭配来进行设置。 --> | |
<meta name="apple-mobile-web-app-status-bar-style" content="black"/> | |
<!-- 忽略页面中的数字识别为电话号码,同样还有一个email识别 --> | |
<meta name="format-detection" content="telephone=no, email=no"/> | |
<!-- 启用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"> | |
<!-- apple-touch-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"> | |
<!-- apple-touch-startup-image --> | |
<link rel="apple-touch-startup-image" href="/startup.png"> | |
<!-- iPhone --> | |
<link href="apple-touch-startup-image-320x460.png" media="(device-width: 320px)" rel="apple-touch-startup-image"/> | |
<!-- iPhone Retina --> | |
<link href="apple-touch-startup-image-640x920.png" media="(device-width: 320px) and (-webkit-device-pixel-ratio: 2)" | |
rel="apple-touch-startup-image"/> | |
<!-- iPhone 5 --> | |
<link rel="apple-touch-startup-image" | |
media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)" | |
href="apple-touch-startup-image-640x1096.png"> | |
<!-- iPad portrait --> | |
<link href="apple-touch-startup-image-768x1004.png" media="(device-width: 768px) and (orientation: portrait)" | |
rel="apple-touch-startup-image"/> | |
<!-- Pad landscape --> | |
<link href="apple-touch-startup-image-748x1024.png" media="(device-width: 768px) and (orientation: landscape)" | |
rel="apple-touch-startup-image"/> | |
<!-- iPad Retina portrait --> | |
<link href="apple-touch-startup-image-1536x2008.png" | |
media="(device-width: 1536px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2)" | |
rel="apple-touch-startup-image"/> | |
<!-- iPad Retina landscape --> | |
<link href="apple-touch-startup-image-1496x2048.png" | |
media="(device-width: 1536px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2)" | |
rel="apple-touch-startup-image"/> | |
<title>Document</title> | |
</head> | |
<body> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment