랜딩 페이지 화면 크기에 따른 컴포넌트 크기 조절 및 디자인 이슈 수정 (issue #763) #764
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
구현 요약
컴포넌트 사이 간격이 좁고, 특정 스크롤 위치에 있을 때 컴포넌트가 깜빡이는 현상을 해결했습니다.
원인으로는,
intersectionObserver
가 각 컴포넌트마다 하나씩, 총 세 개가 있었는데요, 이를 하나의 observer로 합친 뒤visibleIndex
를 통해 현재 보여줘야 하는 컴포넌트의 인덱스를 저장하는 방식으로 변경했습니다.버그 개선 후 랜딩 페이지
default.mp4
100vh
로 꽉 차게 조정헤더 아래에 작은 공백이 있었습니다. 이 공백은 헤더의 세로 폭 때문에 추가했던
spacer
인데요, 원인을 확인해보니본문으로 바로가기
버튼이 position을 차지하고 있어 버튼에 밀려 보여지는 공백이었습니다.따라서
본문으로 바로가기
버튼의 기본 position을absolute
로 변경하여 문서의 흐름에 영향을 주지 않도록 변경했습니다. (기존에는 focusing 되어 있을 때만absolute
로 설정)기존
헤더 개선 후
연관 이슈
참고
코드 리뷰에
RCA 룰
을 적용할 시 참고해주세요.