Lines Matching refs:scrollEvent
2673 ### on('scrollEvent')<sup>12+</sup>
2675 on(type: 'scrollEvent', callback: Callback\<observer.ScrollEventInfo\>): void
2687 | type | string | 是 | 监听事件,固定为'scrollEvent',即滚…
2694 ### off('scrollEvent')<sup>12+</sup>
2696 off(type: 'scrollEvent', callback?: Callback\<observer.ScrollEventInfo\>): void
2708 | type | string | 是 | 监听事件,固定为'scrollEvent',即滚…
2715 ### on('scrollEvent')<sup>12+</sup>
2717 on(type: 'scrollEvent', options: observer.ObserverOptions, callback: Callback\<observer.ScrollEvent…
2729 … | 是 | 监听事件,固定为'scrollEvent',即滚动事件的开始和结束。 |
2737 ### off('scrollEvent')<sup>12+</sup>
2739 off(type: 'scrollEvent', options: observer.ObserverOptions, callback?: Callback\<observer.ScrollEve…
2751 … | 是 | 监听事件,固定为'scrollEvent',即滚动事件的开始和结束。 |
2792 this.observer.on('scrollEvent', (info) => {
2798 this.observer.off('scrollEvent');
2805 this.observer.on('scrollEvent', { id:"testId" }, (info) => {
2811 this.observer.off('scrollEvent', { id:"testId" });