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

ios10中禁止用户缩放页面

时间:2019-03-18 11:53:49      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:1.0   port   script   list   window   listener   touch   rev   als   

在ios10前我们能通过设置meta来禁止用户缩放页面:

 

[html] view plain copy
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0;" name="viewport" />  


在ios10系统中meta设置失效了:

为了提高Safari中网站的辅助功能,即使网站在视口中设置了user-scalable = no,用户也可以手动缩放。

 

解决方法:监听事件来阻止

[javascript] view plain copy
window.onload=function () {  
        document.addEventListener(‘touchstart‘,function (event) {  
            if(event.touches.length>1){  
                event.preventDefault();  
            }  
        })  
        var lastTouchEnd=0;  
        document.addEventListener(‘touchend‘,function (event) {  
            var now=(new Date()).getTime();  
            if(now-lastTouchEnd<=300){  
                event.preventDefault();  
            }  
            lastTouchEnd=now;  
        },false)  
    }  

 

ios10中禁止用户缩放页面

标签:1.0   port   script   list   window   listener   touch   rev   als   

原文地址:https://www.cnblogs.com/shaozhu520/p/10551158.html

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