대표 이미지 crossorigin="anonymous"> '맛집·카페 지도' 카테고리의 글 목록
본문 바로가기

// IntersectionObserver 세팅 const observer = new IntersectionObserver((entries, obs) => { entries.forEach(entry => { if (entry.isIntersecting) { insertAd(entry.target); obs.unobserve(entry.target); } }); }, { rootMargin: '0px 0px 300px 0px', threshold: 0 }); document.querySelectorAll('.ads-observe-zone').forEach(el => { observer.observe(el); }); });