자동 슬라이더가 활성화되면 페이지 스크롤이 이동합니다.
5290 단어 reacttypescriptjavascript
해결 방법을 모르겠습니다.
구글링을 해봐도 진행이 안되어 여기에 질문드립니다.
const delay = 3000;
export default function Banner() {
const [index, setIndex] = useState(0);
const timeoutRef = useRef<any>(null);
const banners = [...];
const handleIndex = (prop: number) => {
if (prop <= 0) {
setIndex(0);
return;
}
if (prop >= banners.length - 1) {
setIndex(banners.length - 1);
return;
}
setIndex(prop);
};
const resetTimeout = () => {
if (timeoutRef.current) {
clearTimeout(timeoutRef.current);
}
};
useEffect(() => {
resetTimeout();
timeoutRef.current = setTimeout(() => {
if (index >= banners.length - 1) {
setIndex(0);
return;
}
setIndex(index + 1);
}, delay);
return () => {
resetTimeout();
};
}, [index]);
return <Template index={index} banners={banners} handleIndex={handleIndex} />;
}
Reference
이 문제에 관하여(자동 슬라이더가 활성화되면 페이지 스크롤이 이동합니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/liam_chu/page-scrolling-moves-when-auto-slider-is-activated-3hcl텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)