zoukankan      html  css  js  c++  java
  • 微信小程序 自定义下拉加载 对于ios弹性事件的处理

    自己做了个下拉加载组件 发现在ios弹性情况下不会出现预期的效果,在网上找了很久,自己也思考了很久总结了三个方法,来实现ios的兼容。

    首先思考:ios为什么会出现情况?
    发现:在ios弹性触发的情况下 微信的监听页面滑动事件(onPageScroll)的 e.scrollTop会出现负数,且 ios弹性会遮挡住隐藏view的出现

    1.利用catch
    判断下拉事件需要用到的三个事件, touchstart(触摸开始),touchend(触摸结束),touchmove (触摸时)。当它们都使用catch时,发现ios是可以实现与安卓一样的效果(猜测:因为catch事件阻止了冒泡,所以iOS的弹性情况被catch遮挡住,阻止掉了)

    缺点:此事件会存在在catch事件包含内的事件无法点击

    catchtouchstart="start_fn" catchtouchend="end_fn" catchtouchmove="move_fn"

    2.在微信的.json配置"disableScroll": true
    在需要用到的文件下的.json文件中配置"disableScroll": true (猜测:因为"disableScroll": true 的配置是定义了此页面不允许上下滑动,而阻止了ios的弹性)

    缺点:该页面将不能进行上下滑动

    3.运用微信的animation 运用动画效果将被隐藏的view显示出来

      onPageScroll: function (e) {
        if(e.scrollTop<-10){
          this.data.index_scrollTop = false
        }
      },
    const animation = wx.createAnimation({
      duration: 10,
      timingFunction: 'step-start',
    })
     this.animation = animation
     animation.translateY(-46).step()
     this.setData({
       animation: animation.export()
     })
     setTimeout(function () {
       animation.translateY(0).step()
       that.setData({
         animation: animation.export()
       })
     }, 1000)

    ————————————————
    版权声明:本文为CSDN博主「空、」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
    原文链接:https://blog.csdn.net/weixin_43311271/article/details/88638536

  • 相关阅读:
    [WP8] ListBox的Item宽度自动填满
    [WP8] Binding时,依照DataType选择DataTemplate
    [CLK Framework] CLK.Threading.PortableTimer
    Sql Server 中 根据列名查询表名
    hMailServer SSL 配置
    SmtpClient SSL 发送邮件异常排查
    hMailServer 配置
    ADO.NET 连接池 Session 状态分析
    SqlBulkCopy 参数配置示例
    arrow css
  • 原文地址:https://www.cnblogs.com/lguow/p/14791199.html
Copyright © 2011-2022 走看看