일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- javascript
- it
- Spring Boot
- java
- Gradle
- laravel
- tool
- 요리
- Design Patterns
- linux
- Spring Batch
- jenkins
- Oracle
- redis
- elasticsearch
- IntelliJ
- 맛집
- MySQL
- Spring
- Git
- JVM
- springboot
- AWS
- Web Server
- ubuntu
- devops
- php
- db
- jsp
- ReactJS
Archives
- Today
- Total
아무거나
React + Typescript 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 Hook을 이용한 Functional Component 구현 (0) | 2020.04.06 |
---|---|
Number값 들어온 값에 따라 0표시 제어하는 함수(개수 입력에 용이하다) (0) | 2020.03.21 |
react uri path 값 가져오기 (0) | 2020.01.02 |
history.push 동작 오류 (0) | 2019.12.31 |
[reactjs] Typescript with React + Redux - 2 (redux 적용) (0) | 2019.11.19 |
Comments