Skip to main content
Version: 下个版本

Taro.createIntersectionObserver(component, options)

创建并返回一个 IntersectionObserver 对象实例。在自定义组件或包含自定义组件的页面中,应使用 this.createIntersectionObserver([options]) 来代替。

支持情况:

参考文档

类型

(component: TaroGeneral.IAnyObject, options?: Option) => IntersectionObserver

参数

参数类型说明
componentTaroGeneral.IAnyObject自定义组件实例
optionsOption选项

Option

选项

参数类型必填说明
initialRationumber初始的相交比例,如果调用时检测到的相交比例与这个值不相等且达到阈值,则会触发一次监听器的回调函数。
observeAllboolean是否同时观测多个目标节点(而非一个),如果设为 true ,observe 的 targetSelector 将选中多个节点(注意:同时选中过多节点将影响渲染性能)
thresholdsnumber[]一个数值数组,包含所有阈值。

示例代码

const observer = Taro.createIntersectionObserver(this, { thresholds: [0], observeAll: true })