码迷,mamicode.com
首页 > 移动开发 > 详细

webapp中的meta

时间:2015-02-04 20:22:44      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:

<!--开发后删除-->
<meta http-equiv="Pragma" name="no-store" /><!--必须联网才可以访问-->
<meta http-equiv="Cache-Control" name="no-store" /><!--浏览器缓存-->
<meta http-equiv="refresh" content="3" /><!--在3秒钟后刷新-->
<!--开发后删除-->
<meta http-equiv="window-target" content="_top" /> <!--防止别人在框架里调用自己的页面-->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<meta name="HandheldFriendly" content="true" />

<!--搜索引擎抓取-->
<meta name="robots" content="index,follow"/>
<meta name ="viewport" content ="initial-scale=1.0,maximum-scale=1,user-scalable=no">
<!--是否启用 WebApp 全屏模式,删除苹果默认的工具栏和菜单栏-->
<meta name="apple-mobile-web-app-capable" content="yes" />
<!--添加智能 App 广告条 Smart App Banner(iOS 6+ Safari)-->
<meta name="apple-itunes-app" content="app-id=myAppStoreID,affiliate-data=myAffiliateData,app-argument=myURL">
<!--设置苹果工具栏颜色-->
<meta content="black" name="apple-mobile-web-app-status-bar-style" />
<!--忽略页面中的数字识别为电话,忽略email识别-->
<meta content="telephone=no" name="format-detection" />
<!--启用360浏览器的极速模式(webkit)-->
<meta name="renderer" content="webkit">
<!--UC强制竖屏-->
<meta name="screen-orientation" content="portrait">
<!--UC强制全屏-->
<meta name="full-screen" content="yes">
<!--QQ强制竖屏-->
<meta name="x5-orientation" content="portrait">
<!--QQ强制全屏-->
<meta name="x5-fullscreen" content="true">
<!--UC应用模式-->
<meta name="browsermode" content="application">
<!--windows phone 点击无高光-->
<meta name="msapplication-tap-highlight" content="no">
<!--iOS 图标:iPhone 和 iTouch,默认 57x57 像素,必须有-->
<link rel="apple-touch-icon-precomposed" href="/apple-touch-icon-57x57-precomposed.png"/>
<!--Retina iPhone 和 Retina iTouch,114x114 像素,可以没有,但推荐有-->
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/apple-touch-icon-114x114-precomposed.png"/>
<!--Retina iPad,144x144 像素,可以没有,但推荐有-->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/apple-touch-icon-144x144-precomposed.png"/>
<!--添加 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"/>
<!--去除Android平台中对邮箱地址的识别-->
<meta content="email=no" name="format-detection" />

webapp中的meta

标签:

原文地址:http://www.cnblogs.com/windtony/p/4273156.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!