微信h5页面禁止下拉出现网页来源等

Posted 崔凯通

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信h5页面禁止下拉出现网页来源等相关的知识,希望对你有一定的参考价值。

 

1.可以给document的touchmove事件禁止掉就行了

1
2
3
document.querySelector(‘body‘).addEventListener(‘touchmove‘function(e) {
    e.preventDefault();
})

 

2.如果页面有部分区域必须需要滑动,需要用touchmove事件的话,那么可以把那部分的touchmove事件过滤掉

比如我想要以下代码中的bottom类可以用touchmove事件

技术分享
<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <title>微信禁止下拉露黑底</title>
</head>
<body>
    <div class="top"></div>
    <div class="bottom"></div>
</body>
</html>
技术分享

用以下代码就可以实现

document.querySelector(‘body‘).addEventListener(‘touchmove‘, function(e) {
    if (!document.querySelector(‘.bottom‘).contains(e.target)) {
        e.preventDefault();
    }
})

以上是关于微信h5页面禁止下拉出现网页来源等的主要内容,如果未能解决你的问题,请参考以下文章

微信h5页面下拉露出网页来源的解决办法

禁止微信内h5网页下拉

微信公众号 --- 禁止下拉

Vue禁止h5页面iOS浏览器下拉bounce效果

下拉菜单禁止页面滑动

H5移动端禁止页面上下滚动