H5移动端浏览器拖动

Posted AnswerTheQuestion

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了H5移动端浏览器拖动相关的知识,希望对你有一定的参考价值。

/**
 * 禁止手机浏览器拖动
 */
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移动端浏览器拖动的主要内容,如果未能解决你的问题,请参考以下文章

H5移动端自定义video播放控件controls(带播放暂停,进度条拖拽)

h5移动端阻止浏览器长按事件

移动端ios14版本h5无法

移动端h5禁用浏览器左滑右滑的前进后退功能

H5 移动端布局

移动端h5 使用微信登录