Q&A
CloudSearch 와 OpenSearch 는 디비에 연결이 안돼나요?
자세한답변감사합니다 !
- Likes
- 1
- Comments
- 2
- Viewcount
- 503
Q&A
자세한답변감사합니다 !
Q&A
감사합니다!
Q&A
감사합니다 알고보니 width 를인식이 안돼서 문제가생겼네요 absolute가안돼서 fixed 로 변경했는데 부모뷰가 전체뷰라서 둘다정상작동하네요. "use client"; import React, { useRef, useEffect, useState } from "react"; import motion_sky1 from "@/../../public/images2/motion_sky1.gif"; function Page() { const [scrollPercent, setScrollPercent] = useState(0); const scrollBody = useRef(null); console.log(scrollPercent); useEffect(() => { const handleScroll = () => { const scrollRealHeight = document.documentElement.scrollHeight - window.innerHeight; const scrollTop = window.scrollY; const percentScroll = Math.round((scrollTop / scrollRealHeight) * 100); setScrollPercent(percentScroll); }; window.addEventListener("scroll", handleScroll); return () => { window.removeEventListener("scroll", handleScroll); }; }, []); return ( 내용 = 25 && scrollPercent = 50 && scrollPercent = 75 && scrollPercent {/* 몸 */} {/* 손 */} {/* 달 */} ); } export default Page;
Q&A
혹시 okky 인가 거기다가 질문해봐도됄까요?