收藏
回答

wx.createIntersectionObserver传参不生效

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 需求 wx.createIntersectionObserver 工具 6.6.6 2.0.2

- wx.createIntersectionObserver


- 传参 不会监听相交,不传参却能打印 不知道哪里写错了什么的



回答关注问题邀请回答
收藏

3 个回答

  • 春如旧
    春如旧
    2018-05-09

    { selectAll : true } 也不行

    2018-05-09
    有用 4
    回复
  • 2018-09-20
    Page({  onLoad: function(){
        wx.createIntersectionObserver(this, {      thresholds: [0.2, 0.5]
        }).relativeTo('.relative-class').relativeToViewport().observe('.target-class', (res) => {
          res.intersectionRatio // 相交区域占目标节点的布局区域的比例
          res.intersectionRect // 相交区域
          res.intersectionRect.left // 相交区域的左边界坐标
          res.intersectionRect.top // 相交区域的上边界坐标
          res.intersectionRect.width // 相交区域的宽度
          res.intersectionRect.height // 相交区域的高度
        })
      }
    })


    2018-09-20
    有用
    回复
  • 好大
    好大
    2018-07-27

    { observeAll : true }

    2018-07-27
    有用
    回复
登录 后发表内容