일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Spring Batch
- JVM
- java
- it
- Oracle
- linux
- Design Patterns
- devops
- php
- Spring Boot
- MySQL
- Web Server
- jsp
- ReactJS
- jenkins
- AWS
- Git
- tool
- elasticsearch
- 맛집
- springboot
- IntelliJ
- laravel
- javascript
- 요리
- redis
- Gradle
- Spring
- db
- ubuntu
Archives
- Today
- Total
아무거나
Scroll Down 구현 본문
반응형
오래전에 작성된 글을 복사해온거라 직접 테스트 해보는 것을 권장 ( 참고용 정도로만 올렸음 )
- Scroll Down 구현
// Render DOM // ref가 지정된 곳으로 포커싱이 될 예정이다. forEach({ .... <input ... ref={this.refElement} ... /> }) // 스크롤 다운 함수 async handleScrollDown() { if (this.scrollLocationRef && this.scrollLocationRef.current) { this.scrollLocationRef.current.scrollIntoView({ behavior: 'smooth', block: 'start' }) } } // 실행되는 함수 // 동적 추가할 때 마다 새로 생성된 행의 Ref를 찾을 수 없어서 우선 재귀함수로 해결.. (__) this.handleScrollDown().then(() => { this.handleScrollDown().then(() => {}) })
반응형
'Javascript & HTML & CSS > reactjs' 카테고리의 다른 글
React + Typescript 에서 FC 를 사용하면 안되는 이유 (0) | 2023.05.31 |
---|---|
Fragments (0) | 2022.07.29 |
useRef 를 사용한 직접 DOM 제어 (0) | 2022.07.29 |
react + typescript 체크박스 컨트롤 예제 (0) | 2020.05.11 |
Fragments 정의 (0) | 2020.05.08 |
Comments