null

画师null
0
0
画师:治癒 X:null1040 ​​​ #插画分享#
0
0
// 创建 ref 数组 const sectionRefs = useRef<(HTMLElement | null)[]>([]); useEffect(() => { const observer = new IntersectionObserver( (entries) => { entries.forEach(entry => { if (entry.isIntersecting) { setActiveId(entry.target.id); } }); }, { root: null, // 使用视口作为根 rootMargin: '0px', threshold: 0.5 // 当元素50%可见时触发 } );
0
0