Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Cheerio
- SW
- 도커
- 서버
- nodejs
- npm repository
- Nexus
- 네이버 클라우드 플랫폼
- ISO25000
- angular2 google analytics
- pylint
- angular-cli
- 소프트웨어
- 신한대학교
- ISO25010
- RxJS
- docker
- phantomjs
- 품질
- REQUEST
- 구글 클라우드 플랫폼
- angular
- 품질 표준
- 크롤링
- vscode
- cyber.shinhan
- 페이지구분
- ISO9126
- casperJS
- angular2
Archives
- Today
- Total
나를 위한 기록들
Angular2, 4 스크롤 이벤트 본문
스크롤 이벤트 값 가져오기
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() {
}
}
'JS > Angular' 카테고리의 다른 글
Angular2 with google analytics (구글 아날리틱스 페이지구분) (0) | 2017.09.10 |
---|---|
Angular2 rxjs 데이터 공유하기 (0) | 2017.09.04 |
Comments