Interface IntersectionObserverOptions

interface IntersectionObserverOptions {
    root?: null | Element | Document;
    rootMargin?: string;
    threshold?: number | number[];
}

Properties

root?: null | Element | Document

Read on mdn web docs.

rootMargin?: string

Read on mdn web docs.

threshold?: number | number[]

Read on mdn web docs.