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: {
prototype: IntersectionObserverEntry;
new (intersectionObserverEntryInit: IntersectionObserverEntryInit): IntersectionObserverEntry;
};§Properties
§
readonly boundingClientRect: DOMRectReadOnly
[src]§
readonly intersectionRect: DOMRectReadOnly
[src]§
readonly rootBounds: DOMRectReadOnly | null
[src]§
readonly time: DOMHighResTimeStamp
[src]