IntersectionObserver 元素偵測

透過瀏覽器內建的 IntersectionObserver 即可設定在網頁上的元素被使用者看到可以觸發函式,可以透過這些函式去對元素做互動

let options = {
  root: document.querySelector('#scrollArea'),
  rootMargin: '0px',
  threshold: 1.0
}

let observer = new IntersectionObserver(observedCallback, options);


// 觀察到元素的 callback
function observedCallback(observeElementsCollectioin) {

}

參考資料

results matching ""

    No results matching ""