打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
iphone竖屏显示问题
userphoto

2013.08.19

关注
down vote accepted

Jeremy Keith (@adactio) has a good solution for this on his blog Orientation and scale

Keep the Markup scalable by not setting a maximum-scale in markup.

<meta name="viewport" content="width=device-width, initial-scale=1">

Then disable scalability with javascript on load until gesturestart when you allow scalability again with this script:

if (navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPad/i)) {    var viewportmeta = document.querySelector('meta[name="viewport"]');    if (viewportmeta) {        viewportmeta.content = 'width=device-width, minimum-scale=1.0, maximum-scale=1.0, initial-scale=1.0';        document.body.addEventListener('gesturestart', function () {            viewportmeta.content = 'width=device-width, minimum-scale=0.25, maximum-scale=1.6';        }, false);    }}
share|improve this answer
3 
Surely this is better than disabling zoom?! The best fix I've found yet :) – danwellman Sep 23 '11 at 13:58
this worked for me too. thanks! – 29er Oct 31 '11 at 4:30
Hmm, this still disables the ability to zoom. Does anyone have a simple solution that doesn't do this? – Brad Swerdfeger Feb 20 '12 at 7:00
3 
It works. However, I've noticed the user has to pinch open twice in order to zoom. I'm guessing this is because the maximum-scale=1.0 stays in effect after the gesture starts. Is there any way to fix this? – LandonSchropp May 6 '12 at 22:56
2 
This doesn't work for 2 reasons:1) it disables gesturestart number 1, causing the user to need to gesture twice.2) it breaks after the user doubles the first gesture, so it really only works if the user never gestures at all. -- everyone should look at Andrew Ashbacher's solution below. It really works. – tmsimont Jun 1 '12 at 21:53
本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
防止横竖屏时,iphone自动缩放的一段代码
指尖下的js —— 多触式web前端开发之三:处理复杂手势
html页面自适应宽度
第12章 响应式网页设计-参考题
浅谈Web自适应
iPhone屏幕尺寸、分辨率及适配
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服