window:scroll不适用于ngx-bootstrap模态

时间:2018-09-18 02:19:43

标签: angular ngx-bootstrap

我在我的Angle 5应用中使用ngx-bootrap。现在我想在scroging页面时监听事件,我使用@HostListener('window:scroll',[]),但它不适用于开放模式。

那我该怎么办

export class ScrollDirective {
    @HostListener("window:scroll", []) onWindowScroll() {
       console.log(1)
    }
}

1 个答案:

答案 0 :(得分:0)

这适用于ngx-bootstrap模式

 ngOnInit() {
 Observable.fromEvent(this.el.nativeElement, 'scroll').subscribe((e: any) => {
     console.log(e.target);
  });
}