projects/ngui-common/src/lib/ngui-inview/src/ngui-inview.directive.ts
Fires (nguiInview) or (nguiOutview) events dependents on the element is in viewport or not
Selector | [nguiInview], [nguiOutview] |
Properties |
Methods |
Inputs |
Outputs |
constructor(element: ElementRef, platformId: any)
|
|||||||||
Parameters :
|
observerOptions | |
Type : IntersectionObserverInit
|
|
Default value : {threshold: [.1, .2, .3, .4, .5, .6, .7, .8]}
|
|
IntersectionObserver options |
options | |
Type : any
|
|
Deprecated config. Use |
nguiInview | |
Type : EventEmitter<IntersectionObserverEntry>
|
|
Event that will be fired when in viewport |
nguiOutview | |
Type : EventEmitter<IntersectionObserverEntry>
|
|
Event that will be fired when out of viewport |
handleIntersect | ||||
handleIntersect(entries)
|
||||
Fires (nguiInview) event when this element is in viewport and fires (nguiOutview) event when this element is not in viewport
Parameters :
Returns :
void
|
ngOnDestroy |
ngOnDestroy()
|
Stops IntersectionObserver
Returns :
void
|
ngOnInit |
ngOnInit()
|
Starts IntersectionObserver
Returns :
void
|
Public element |
Type : ElementRef
|
observer |
Type : IntersectionObserver
|