The IntersectionObserverEntry interface of the Intersection Observer describes the intersection between the target element and its container at a specific moment of transition.
The IntersectionObserverEntry interface of the Intersection Observer describes the intersection between the target element and its container at a specific moment of transition.
(bounding-client-rect this)
Property.
The web.IntersectionObserverEntry
interface's read-only boundingClientRect
returns a dom.DOMRectReadOnly
which in essence describes a
describing the smallest rectangle that contains the entire target
var boundsRect = IntersectionObserverEntry.boundingClientRect;
See also: https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/boundingClientRect
Property. The `web.IntersectionObserverEntry` interface's read-only boundingClientRect returns a `dom.DOMRectReadOnly` which in essence describes a describing the smallest rectangle that contains the entire target `var boundsRect = IntersectionObserverEntry.boundingClientRect;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/boundingClientRect`
(intersection-ratio this)
Property.
The web.IntersectionObserverEntry
interface's read-only intersectionRatio
tells you how much of the target element is currently visible
the root's intersection ratio, as a value between 0.0 and 1.0.
var intersectionRatio = IntersectionObserverEntry.intersectionRatio;
See also: https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/intersectionRatio
Property. The `web.IntersectionObserverEntry` interface's read-only intersectionRatio tells you how much of the target element is currently visible the root's intersection ratio, as a value between 0.0 and 1.0. `var intersectionRatio = IntersectionObserverEntry.intersectionRatio;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/intersectionRatio`
(intersection-rect this)
Property.
The web.IntersectionObserverEntry
interface's read-only intersectionRect
is a dom.DOMRectReadOnly
object which describes the smallest
that contains the entire portion of the target element which
currently visible within the intersection root.
var intersectionRect = IntersectionObserverEntry.intersectionRect;
See also: https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/intersectionRect
Property. The `web.IntersectionObserverEntry` interface's read-only intersectionRect is a `dom.DOMRectReadOnly` object which describes the smallest that contains the entire portion of the target element which currently visible within the intersection root. `var intersectionRect = IntersectionObserverEntry.intersectionRect;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/intersectionRect`
(is-intersecting this)
Property.
The web.IntersectionObserverEntry
interface's read-only isIntersecting
is a Boolean value which is true if the target element intersects
the intersection observer's root. If this is true, then, the
describes a transition into a state of intersection; if it's
then you know the transition is from intersecting to not-intersecting.
var isIntersecting = IntersectionObserverEntry.isIntersecting;
See also: https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/isIntersecting
Property. The `web.IntersectionObserverEntry` interface's read-only isIntersecting is a Boolean value which is true if the target element intersects the intersection observer's root. If this is true, then, the describes a transition into a state of intersection; if it's then you know the transition is from intersecting to not-intersecting. `var isIntersecting = IntersectionObserverEntry.isIntersecting;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/isIntersecting`
(root-bounds this)
Property.
The web.IntersectionObserverEntry
interface's read-only rootBounds
is a dom.DOMRectReadOnly
corresponding to the web.target
's
intersection rectangle, offset by the web.IntersectionObserver.rootMargin
one is specified.
var rootBounds = IntersectionObserverEntry.rootBounds;
See also: https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/rootBounds
Property. The `web.IntersectionObserverEntry` interface's read-only rootBounds is a `dom.DOMRectReadOnly` corresponding to the `web.target`'s intersection rectangle, offset by the `web.IntersectionObserver.rootMargin` one is specified. `var rootBounds = IntersectionObserverEntry.rootBounds;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/rootBounds`
(set-bounding-client-rect! this val)
Property.
The web.IntersectionObserverEntry
interface's read-only boundingClientRect
returns a dom.DOMRectReadOnly
which in essence describes a
describing the smallest rectangle that contains the entire target
var boundsRect = IntersectionObserverEntry.boundingClientRect;
See also: https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/boundingClientRect
Property. The `web.IntersectionObserverEntry` interface's read-only boundingClientRect returns a `dom.DOMRectReadOnly` which in essence describes a describing the smallest rectangle that contains the entire target `var boundsRect = IntersectionObserverEntry.boundingClientRect;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/boundingClientRect`
(set-intersection-ratio! this val)
Property.
The web.IntersectionObserverEntry
interface's read-only intersectionRatio
tells you how much of the target element is currently visible
the root's intersection ratio, as a value between 0.0 and 1.0.
var intersectionRatio = IntersectionObserverEntry.intersectionRatio;
See also: https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/intersectionRatio
Property. The `web.IntersectionObserverEntry` interface's read-only intersectionRatio tells you how much of the target element is currently visible the root's intersection ratio, as a value between 0.0 and 1.0. `var intersectionRatio = IntersectionObserverEntry.intersectionRatio;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/intersectionRatio`
(set-intersection-rect! this val)
Property.
The web.IntersectionObserverEntry
interface's read-only intersectionRect
is a dom.DOMRectReadOnly
object which describes the smallest
that contains the entire portion of the target element which
currently visible within the intersection root.
var intersectionRect = IntersectionObserverEntry.intersectionRect;
See also: https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/intersectionRect
Property. The `web.IntersectionObserverEntry` interface's read-only intersectionRect is a `dom.DOMRectReadOnly` object which describes the smallest that contains the entire portion of the target element which currently visible within the intersection root. `var intersectionRect = IntersectionObserverEntry.intersectionRect;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/intersectionRect`
(set-is-intersecting! this val)
Property.
The web.IntersectionObserverEntry
interface's read-only isIntersecting
is a Boolean value which is true if the target element intersects
the intersection observer's root. If this is true, then, the
describes a transition into a state of intersection; if it's
then you know the transition is from intersecting to not-intersecting.
var isIntersecting = IntersectionObserverEntry.isIntersecting;
See also: https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/isIntersecting
Property. The `web.IntersectionObserverEntry` interface's read-only isIntersecting is a Boolean value which is true if the target element intersects the intersection observer's root. If this is true, then, the describes a transition into a state of intersection; if it's then you know the transition is from intersecting to not-intersecting. `var isIntersecting = IntersectionObserverEntry.isIntersecting;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/isIntersecting`
(set-root-bounds! this val)
Property.
The web.IntersectionObserverEntry
interface's read-only rootBounds
is a dom.DOMRectReadOnly
corresponding to the web.target
's
intersection rectangle, offset by the web.IntersectionObserver.rootMargin
one is specified.
var rootBounds = IntersectionObserverEntry.rootBounds;
See also: https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/rootBounds
Property. The `web.IntersectionObserverEntry` interface's read-only rootBounds is a `dom.DOMRectReadOnly` corresponding to the `web.target`'s intersection rectangle, offset by the `web.IntersectionObserver.rootMargin` one is specified. `var rootBounds = IntersectionObserverEntry.rootBounds;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/rootBounds`
(set-target! this val)
Property.
The web.IntersectionObserverEntry
interface's read-only target
indicates which targeted web.Element
has changed its amount
intersection with the intersection root.
var target = IntersectionObserverEntry.target;
See also: https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/target
Property. The `web.IntersectionObserverEntry` interface's read-only target indicates which targeted `web.Element` has changed its amount intersection with the intersection root. `var target = IntersectionObserverEntry.target;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/target`
(set-time! this val)
Property.
The web.IntersectionObserverEntry
interface's read-only time
is a dom.DOMHighResTimeStamp
that indicates the time at which
intersection change occurred relative to the time at which the
was created.
var time = IntersectionObserverEntry.time;
See also: https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/time
Property. The `web.IntersectionObserverEntry` interface's read-only time is a `dom.DOMHighResTimeStamp` that indicates the time at which intersection change occurred relative to the time at which the was created. `var time = IntersectionObserverEntry.time;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/time`
(target this)
Property.
The web.IntersectionObserverEntry
interface's read-only target
indicates which targeted web.Element
has changed its amount
intersection with the intersection root.
var target = IntersectionObserverEntry.target;
See also: https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/target
Property. The `web.IntersectionObserverEntry` interface's read-only target indicates which targeted `web.Element` has changed its amount intersection with the intersection root. `var target = IntersectionObserverEntry.target;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/target`
(time this)
Property.
The web.IntersectionObserverEntry
interface's read-only time
is a dom.DOMHighResTimeStamp
that indicates the time at which
intersection change occurred relative to the time at which the
was created.
var time = IntersectionObserverEntry.time;
See also: https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/time
Property. The `web.IntersectionObserverEntry` interface's read-only time is a `dom.DOMHighResTimeStamp` that indicates the time at which intersection change occurred relative to the time at which the was created. `var time = IntersectionObserverEntry.time;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserverEntry/time`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close