当前位置:   article > 正文

微信h5阻止下拉出现“网页由...提供”_微信公众号h5怎么禁用下拉

微信公众号h5怎么禁用下拉

微信h5阻止下拉出现“网页由…提供”

需求

  1. 在微信h5的开发中,有时会遇到项目上要求在微信打开h5页面时,禁止下拉页面查看“网页由…提供”获取网页的来源

  2. 由于目前微信官方文档并没有提供自定义功能,因此就需要使用其他方式来实现这一目的

解决方法

  1. 大致思路:阻止页面的触摸事件,但是这样回导致整个页面都无法滑动,因此需要加上判断;只有当页面到达顶端的时候阻止触摸事件。

  2. 将以下代码书写在App.vue中,则可以让整个项目实现阻止下拉出现“网页由…提供”的需求,代码如下:

    // js部分
    mounted () {
      this.topNoPullDown()
    },
    methods: {
    	// 当页面到达顶端的时候阻止手动下拉,用于隐藏微信h5下拉展示网页来源
      topNoPullDown () {
        const overscroll = function (el) {
          el.addEventListener('touchstart', function () {
            const top = el.scrollTop
            const totalScroll = el.scrollHeight
            const currentScroll = top + el.offsetHeight
            if (top === 0) {
              el.scrollTop = 1
            } else if (currentScroll === totalScroll) {
              el.scrollTop = top - 1
            }
          })
          el.addEventListener('touchmove', function (evt) {
            if (el.offsetHeight < el.scrollHeight) evt._isScroller = true
          })
        }
        overscroll(document.querySelector('#app'))
        document.body.addEventListener(
          'touchmove',
          function (evt) {
            console.log(evt._isScroller)
            if (!evt._isScroller) {
              evt.preventDefault()
            }
          },
          { passive: false }
        )
      }
    }
    
    // html部分
    <template>
      <div id="app">
        <div class="wx-pages">
          <keep-alive :include="aliveRouter">
            <router-view />
          </keep-alive>
        </div>
      </div>
    </template>
    
    // css部分
    body{
      margin:0;
      padding:0
    }
    
    #app {
      height: 100vh;
      overflow: auto;
      -webkit-overflow-scrolling: touch;
      font-family: 'Avenir', Helvetica, Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      color: #2c3e50;
      padding: 0;
      margin: 0;
    }
    
    .wx-pages:after {
      min-height: calc(100% + 1px);
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
  3. 参考原文链接:https://blog.csdn.net/weixin_39503910/article/details/117222774

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/245905
推荐阅读
相关标签
  

闽ICP备14008679号