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 | 31 |
Tags
- 검색
- angular animation
- modal
- Ionic modal
- 아이오닉 스크롤 이벤트
- scroll
- 셀렉트박스 커스텀
- mysql if
- ajax 사용 예시
- Angular Router
- Oracle LISTAGG 사용 예시
- Router
- summary
- route
- 모달
- 스크롤 이벤트
- flex-1
- formgroup
- 앵귤러 애니메이션
- angular modal
- angular button
- angular route
- 옵저버블
- 스크롤 이벤트 감지
- ApexChart
- 호버
- prisma
- TAILWIND
- 앵귤러 모달
- egov spring ajax 사용 예시
Archives
- Today
- Total
목록ionic scroll event listen (1)
깜놀하는 해므찌로

1. 스크롤을 감지하여 현재 페이지의 위치에 맞게 aside 뷰를 수정해봅시다. 2. (Layout-page) 스크롤 감지를 위해 ion-content 태그에 scrollEvent 속성에 true 설정 및 ionScroll 이벤트 메소드를 선언합니다. import { ScrollService } from '../../services/scroll.service'; constructor(private scrollService: ScrollService) {} ionScroll(ev: any) { this.scrollService.next(ev.detail.currentY); } 3. 스크롤 이벤트 발생 시 현재 Y 축 위치를 가져옵니다. npx nx generate service --project clien..
IT
2023. 7. 9. 12:47