IntersectionObserverを使って、
要素が画面の半分まできたら3つの画像を順番にふわっと表示させたいです。
ICSのサイトや他のIntersectionObserverに関する記事を調べて自分なりに書いてみましたが、上手く動作しません。
よろしくお願いします。
https://codepen.io/kami8ma8810/pen/KKgmQgr
HTML
1<div class="js-trigger"> 2 <img class="js-fadeIn" src="https://picsum.photos/seed/1/200/300" alt=""> 3 <img class="js-fadeIn" src="https://picsum.photos/seed/2/200/300" alt=""> 4 <img class="js-fadeIn" src="https://picsum.photos/seed/3/200/300" alt=""> 5</div>
CSS
1.js-fadeIn { 2 opacity: 0; 3}
JavaScript
1// 監視対象 2const targets = document.querySelectorAll(".js-trigger"); 3 4// オプション 5const options = { 6 root: null, 7 rootMargin: "-50% 0px", 8 threshold: 0 9}; 10 11// オブジェクト生成 12const observer = new IntersectionObserver(doWhenIntersect, options); 13 14// targetを監視 15targets.forEach((target) => { 16 observer.observer(target); 17}); 18 19const doWhenIntersect = (entries) => { 20 entries.forEach((entry) => { 21 if (entry.isIntersecting) { 22 document.querySelectorAll(".js-fadeIn").forEach(function () { 23 gsap.fromTo( 24 ".js-fadeIn", 25 { y: 50 }, 26 { 27 delay: 1, 28 duration: 1.5, 29 y: 0, 30 opacity: 1, 31 ease: "power2.out", 32 stagger: 0.5 33 } 34 ); 35 }); 36 } 37 }); 38};
回答1件
あなたの回答
tips
プレビュー