Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

IntersectionObserverEntry

This Intersection Observer API interface describes the intersection between the target element and its root container at a specific moment of transition.

interface IntersectionObserverEntry {
readonly boundingClientRect: DOMRectReadOnly;
readonly intersectionRatio: number;
readonly intersectionRect: DOMRectReadOnly;
readonly isIntersecting: boolean;
readonly rootBounds: DOMRectReadOnly | null;
readonly target: Element;
readonly time: DOMHighResTimeStamp;
}
var IntersectionObserverEntry: {
new (intersectionObserverEntryInit: IntersectionObserverEntryInit): IntersectionObserverEntry;
}
;

§Properties

§
readonly boundingClientRect: DOMRectReadOnly
[src]
§
readonly intersectionRatio: number
[src]
§
readonly intersectionRect: DOMRectReadOnly
[src]
§
readonly isIntersecting: boolean
[src]
§
readonly rootBounds: DOMRectReadOnly | null
[src]
§
readonly target: Element
[src]