Interface IntersectionObserverEntryInit

    interface IntersectionObserverEntryInit {
        boundingClientRect: DOMRectInit;
        intersectionRatio: number;
        intersectionRect: DOMRectInit;
        isIntersecting: boolean;
        rootBounds: DOMRectInit;
        target: Element;
        time: number;
    }

    Properties

    boundingClientRect: DOMRectInit
    intersectionRatio: number
    intersectionRect: DOMRectInit
    isIntersecting: boolean
    rootBounds: DOMRectInit
    target: Element
    time: number