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

H5移动端浏览器拖动

时间:2018-01-19 17:24:28      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:val   浏览器   auto   als   value   拖动   start   eve   overflow   

/**
 * 禁止手机浏览器拖动
 */
function stopDefault(){
     window.ontouchmove = function(e){
         e.preventDefault && e.preventDefault();
         e.returnValue = false;
         e.stopPropagation && e.stopPropagation();
         return false;
     }
     document.body.style.height = ‘100%‘;
     document.body.style.overflow = ‘hidden‘;
}

/*
 * 允许手机浏览器拖动
 */
function startDefault(){
     window.ontouchmove = function(e){
         e.preventDefault && e.preventDefault();
         e.returnValue = true;
         e.stopPropagation && e.stopPropagation();
         return true;
     }
     document.body.style.height = ‘auto‘;
     document.body.style.overflow = ‘auto‘;
}

 

H5移动端浏览器拖动

标签:val   浏览器   auto   als   value   拖动   start   eve   overflow   

原文地址:https://www.cnblogs.com/AnswerTheQuestion/p/8317916.html

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