react-intersection-observerを使用してスクロールイベントを実装しています。
React
1import React from 'react'; 2import { useInView } from 'react-intersection-observer'; 3import styled from "@emotion/styled"; 4 5export const InterSection = () => { 6 const { ref, inView } = useInView({ 7 /* Optional options */ 8 threshold: 0, 9 }); 10 11 return ( 12 <> 13 <SDiv></SDiv> 14 <Section ref={ref} inView={inView} > 15 <h2>{`Header inside viewport ${inView}.`}</h2> 16 <p>スクロールとするとヌルッと出てくるよ!</p> 17 </Section> 18 <Section ref={ref} inView={inView} > 19 <h2>{`Header inside viewport ${inView}.`}</h2> 20 <p>スクロールとするとヌルッと出てくるよ!2</p> 21 </Section> 22 23 </> 24 ); 25}; 26 27const Section = styled.section` 28 transition: all 1s ease; 29 transform: ${(props) => (props.inView ? "translateY(0)" : "translateY(50px)")}; 30 opacity: ${(props) => (props.inView ? 1 : 0.5)}; 31 height: 500px; 32`; 33 34const SDiv = styled.div` 35 width: 500px; 36 height: 1000px; 37 background-color: red; 38`
ref属性(スクロール交差点)を複数箇所に指定したいです。
上記の実装ですと二つ目のセクションにスクロールが入ったタイミングで、二つのセクションが同時にアニメーションします。
同じrefとinViewを見ているので当たり前かとは思いますが、refとinViewを上のセクションと下のセクションで分けて、それぞれでスクロール検知をしてアニメーションさせる事は出来ないのでしょうか。
各コンポーネントによりref属性の指定は一つまでとなりますでしょうか?
ご存知の方いましたら、教えていただけると幸いです。
あなたの回答
tips
プレビュー