本站免费共享
不需要任何形式的打赏!

ios10 Safari禁止缩放js代码

在ios10以后的系统中,Safari的缩放已经失效,我们可以使用监听来解决,如下为JS代码:

 // JavaScript Document
 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) 
 }
赞(0)
未经允许不得转载:大年网 - 邱大年,邱大大大年 » ios10 Safari禁止缩放js代码

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址