나를 위한 기록들

Angular2, 4 스크롤 이벤트 본문

JS/Angular

Angular2, 4 스크롤 이벤트

lyasee 2017. 9. 4. 02:05

스크롤 이벤트 값 가져오기


import { Component, OnInit, HostListener } from '@angular/core';

@Component({
selector: 'app-scroll',
templateUrl: './scroll.component.html',
styleUrls: ['./scroll.component.css']
})
export class ScrollComponent implements OnInit {

@HostListener('window:scroll', ['$event']) onScrollEvent($event){
console.log($event); // 스크롤 정보
console.log("scrolling");
}

constructor() { }

ngOnInit() {
}

}



Comments