This method uses the Intersection Observer which is relatively the new kid in town, so be sure to check out Browser Support. Also polyfill.
But let’s go into why first? Why use Intersection Observer and not getBoundingClientRect? I have an article doing that with jQuery here. So Why?
getBoundingClientRect
is something that works on the main thread and hence involves the programmer to write multiple scroll handlers that will at the end of day slow your site down. If working on the main thread is not enough, you have getBoundingClientRect
triggering a browser re-layout.
Intersection Observer API is newly added to spec to free us from this evil. Let’s look at how to setup one first.
const observer = new IntersectionObserver(callback);
const target = document.querySelector('#target');
observer.observe(target);
function callback(entries) {
// Do action here
}
`}
Intersection Observer takes two arguments, first one being callback
function and the second takes an object with different kinds of options. These options are:
root
: root element to which the intersection observer compares the visibility to.
rootMargin
: This one let’s your choose margins for the root element. This is a CSS type margin string, 10px 20px 30px 40px
.
threshold
: This might be the most prominent one among the options. List of threshold(s) at which to trigger callback. callback will be invoked when intersectionRect’s area changes from greater than or equal to any threshold to less than that threshold, and vice versa. This option defaults to 0, which means it fires when a small part of element becomes visible.
In our example, we have used:
const observer = new IntersectionObserver(callback, {
threshold: [0, 0.25, 0.5, 0.75, 1],
});
This means, the callback
will fire at junctures 0, 0.25, 0.5, 0.75 and 1 (0 means 0% visibility and 1 means 100% visibility)
The callback gives you an array of elements that you have attached the observer to. You attach an observer to an element as:
observer.observe(element);
When the callback fires according to the threshold levels that we have specified in our code. It gets the arguments changes
which has an array of all observed elements that you have attached to.
Each object comprises of:
var observer = new IntersectionObserver((changes) => {
for (const change of changes) {
console.log(change.time); // Timestamp when the change occurred
console.log(change.rootBounds); // Unclipped area of root
console.log(change.boundingClientRect); // target.boundingClientRect()
console.log(change.intersectionRect); // boundingClientRect, clipped by its containing block ancestors, and intersected with rootBounds
console.log(change.intersectionRatio); // Ratio of intersectionRect area to boundingClientRect area
console.log(change.target); // the Element target
}
}, {});
Finally, inside this callback you can take any action necessary for your visibility. You might be using this for
Ad visibility
Lazy Loading Images
Executing animations only when it is sure that user is watching
Infinite Loading
Limited only by your imagination…
But do take into account that the Intersection Observer is not pixel perfect, so stay away from creating animations that depend on it.
The intersection observer will stop listening if:
observer.unobserve(target)
observer.disconnect() // The difference being unobserve only removes the target from observation, disconnect removes observation all together.
Target element is deleted
Intersection root is deleted
Happy Coding