我在我的Angle 5应用中使用ngx-bootrap。现在我想在scroging页面时监听事件,我使用@HostListener('window:scroll',[]),但它不适用于开放模式。
那我该怎么办
export class ScrollDirective {
@HostListener("window:scroll", []) onWindowScroll() {
console.log(1)
}
}
答案 0 :(得分:0)
这适用于ngx-bootstrap模式
ngOnInit() {
Observable.fromEvent(this.el.nativeElement, 'scroll').subscribe((e: any) => {
console.log(e.target);
});
}