[React] Dim Scroll 막기 (safari O)

이애진·2022년 10월 8일
0

React

목록 보기
11/28
post-thumbnail
// dim이 발생하면 바로 scroll 막기
useEffect(() => {
  document.body.style.overflow = "hidden";
  document.body.style.touchAction = "none";
});

// close 버튼 눌렀을 때 scroll 허용
const onCloseModalHandler = () => {
  document.body.style.removeProperty("overflow");
  document.body.style.removeProperty("touch-action");
};
profile
Frontend Developer

0개의 댓글