<!--优先使用 IE 最新版本和 Chrome-->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<!--移动端配置-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<!--<meta http-equiv="Cache-Control" content="max-age=0">-->
<meta http-equiv="Cache-Control:private" content="max-age=0">
<meta name="apple-touch-fullscreen" content="yes">
<!-- 是否启用 WebApp 全屏模式,删除苹果默认的工具栏和菜单栏 -->
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- 启用360浏览器的极速模式(webkit) -->
<meta name="renderer" content="webkit">
<!-- 针对手持设备优化,主要是针对一些老的不识别viewport的浏览器,比如黑莓 -->
<meta name="HandheldFriendly" content="true">
<!-- 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">
<!-- 不被显示为拨号连接 -->
<meta name="format-detection" content="telephone=no">
// 移动端自动占满屏幕!
function IndexBannerHeightAuto() {
if ($(window).width() + 17 < 1023) {
if ($(".index_us_banner")) {
$(".index_us_banner").css("height", ($(window).height() - $(".header-wrap").height() + 16) + "px");
}
} else {
//$(".index_us_banner").css("height","894px");
$(".index_us_banner").css("height", ($(window).height() - $(".header-wrap").height()) + 45 + "px");
}
}
干货! 移动端配置!
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 文章中汇总了包括切图、 标注、 字体 、图层命名等很多干货信息 移动端UI设计规范 http://blog.csd...
- 转载:H5缓存机制浅析-移动端Web加载性能优化【干货】 作者:贺辉超,腾讯游戏平台与社区产品部 高级工程师 目录...
- 在OpenGL ES 中, 使用纹理贴图的方式来给一个物体模拟现实的材质, 让几何物体看起来更逼真, 但是在Op...