小程序
小游戏
企业微信
微信支付
扫描小程序码分享
- wx.createIntersectionObserver
- 传参 不会监听相交,不传参却能打印 不知道哪里写错了什么的
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
{ selectAll : true } 也不行
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
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 // 相交区域的高度 }) } })
用 { observeAll : true }
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
{ selectAll : true } 也不行
用 { observeAll : true }