Lines Matching refs:scrollEvent
120 | scrollEvent | [ScrollEventType](#scrolleventtype12) | Yes | Type of the scroll…
306 ## observer.on('scrollEvent')<sup>12+</sup>
308 on(type: 'scrollEvent', callback: Callback\<ScrollEventInfo\>): void
320 … | Yes | Event type. The value **'scrollEvent'** indicates th…
327 ## observer.off('scrollEvent')<sup>12+</sup>
329 off(type: 'scrollEvent', callback?: Callback\<ScrollEventInfo\>): void
341 … | Yes | Event type. The value **'scrollEvent'** indicates th…
348 ## observer.on('scrollEvent')<sup>12+</sup>
350 on(type: 'scrollEvent', options: ObserverOptions, callback: Callback\<ScrollEventInfo\>): void
362 … | Yes | Event type. The value **'scrollEvent'** indicates th…
370 ## observer.off('scrollEvent')<sup>12+</sup>
372 off(type: 'scrollEvent', options: ObserverOptions, callback?: Callback\<ScrollEventInfo\>): void
384 … | Yes | Event type. The value **'scrollEvent'** indicates th…
425 observer.on('scrollEvent', (info) => {
431 observer.off('scrollEvent');
438 observer.on('scrollEvent', this.options, (info) => {
444 observer.off('scrollEvent', this.options);