This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The Intersection Observer API provides a way to asynchronously observe changes in the intersection of a target element with an ancestor element or with a top-level document's viewport.
Historically, detecting visibility of an element, or the relative visibility of two elements in relation to each other, has been a difficult task for which solutions have been unreliable and prone to causing the browser and the sites the user is accessing to become sluggish. Unfortunately, as the web has matured, the need for this kind of information has grown. Intersection information is needed for many reasons, such as:
Implementing intersection detection in the past involved event handlers and loops calling methods like Element.getBoundingClientRect()
to build up the needed information for every element affected. Since all this code runs on the main thread, even one of these can cause performance problems. When a site is loaded with these tests, things can get downright ugly.
Consider a web page that uses infinite scrolling. It uses a vendor-provided library to manage the advertisements placed periodically throughout the page, has animated graphics here and there, and uses a custom library that draws notification boxes and the like. Each of these has its own intersection detection routines, all running on the main thread. The author of the web site may not even realize this is happening, since they're using two libraries that they may know very little about the inner workings of. As the user scrolls the page, these intersection detection routines are firing constantly during the scroll handling code, resulting in an experience that leaves the user frustrated with the browser, the web site, and their computer.
The Intersection Observer API lets code register a callback function that is executed whenever an element they wish to monitor enters or exits another element (or the viewport), or when the amount by which the two intersect changes by a requested amount. This way, sites no longer need to do anything on the main thread to watch for this kind of element intersection, and the browser is free to optimize the management of intersections as it sees fit.
One thing the Intersection Observer API can't tell you: the exact number of pixels that overlap or specifically which ones they are; however, it covers the much more common use case of "If they intersect by somewhere around N%, I need to do something."
The Intersection Observer API allows you to configure a callback that is called whenever one element, called the target, intersects either the device viewport or a specified element; for the purpose of this API, this is called the root element or root. Typically, you'll want to watch for intersection changes with regard to the document's viewport (which is done by specifying null
as the root element ). Whether you're using the viewport or some other element as the root, the API works the same way, executing a callback function you provide whenever the visibility of the target element changes so that it crosses desired amounts of intersection with the root.
The degree of intersection between the target element and its root is the intersection ratio. This is a representation of the percentage of the target element which is visible as a value between 0.0 and 1.0.
Create the intersection observer by calling its constructor and passing it a callback function to be run whenever a threshold is crossed in one direction or the other:
var options = { root: document.querySelector('#scrollArea'), rootMargin: '0px', threshold: 1.0 } var observer = new IntersectionObserver(callback, options);
A threshold of 1.0 means that when 100% of the target is visible within the element specified by the root
option, the callback is invoked.
The options
object passed into the IntersectionObserver()
constructor let you control the circumstances under which the observer's callback is invoked. It has the following fields:
root
null
.rootMargin
margin
property, e.g. "10px 20px 30px 40px"
(top, right, bottom, left). If the root
element is specified, the values can be percentages. This set of values serves to grow or shrink each side of the root element's bounding box before computing intersections. Defaults to all zeros.threshold
Once you have created the observer, you need to give it a target element to watch:
var target = document.querySelector('#listItem'); observer.observe(target);
Whenever the target meets a threshold specified for the IntersectionObserver
, the callback is invoked. The callback receives a list of IntersectionObserverEntry
objects and the observer:
var callback = function(entries, observer) { entries.forEach(entry => { // Each entry describes an intersection change for one observed // target element: // entry.boundingClientRect // entry.intersectionRatio // entry.intersectionRect // entry.isIntersecting // entry.rootBounds // entry.target // entry.time }); };
Be aware that your callback is executed on the main thread. It should operate as quickly as possible; if anything time-consuming needs to be done, use Window.requestIdleCallback()
.
Also, note that if you specified the root
option, the target must be a descendant of the root element.
All areas considered by the Intersection Observer API are rectangles; elements which are irregularly shaped are considered as occupying the smallest rectangle which encloses all of the element's parts. Similarly, if the visible portion of an element is not rectangular, the element's intersection rectangle is construed to be the smallest rectangle that contains all the visible portions of the element.
It's useful to understand a bit about how the various properties provided by IntersectionObserverEntry
describe an intersection.
Before we can track the intersection of an element with a container, we need to know what that container is. That container is the intersection root, or root element. This can be either an element in the document which is an ancestor of the element to be observed, or null
to use the document's viewport as the container.
The rectangle used as the bounds of the intersection root can be adjusted by setting the root margin, rootMargin
, when creating the IntersectionObserver
. The values in rootMargin
define offsets added to each side of the intersection root's bounding box to create the final intersection root bounds (which are disclosed in IntersectionObserverEntry.rootBounds
when the callback is executed).
Rather than reporting every infinitesimal change in how much a target element is visible, the Intersection Observer API uses thresholds. When you create an observer, you can provide one or more numeric values representing percentages of the target element which are visible. Then, the API only reports changes to visibility which cross these thresholds.
For example, if you want to be informed every time a target's visibility passes backward or forward through each 25% mark, you would specify the array [0, 0.25, 0.5, 0.75, 1] as the list of thresholds when creating the observer. You can tell which direction the visibility changed in (that is, whether the element became more visible or less visible) by checking the value of the isIntersecting
property on the IntersectionObserverEntry
passed into the callback function at the time of the visibility change. If isIntersecting
is true
, the target element has become at least as visible as the threshold that was passed. If it's false
, the target is no longer as visible as the given threshold.
To get a feeling for how thresholds work, try scrolling the box below around. Each colored box within it displays the percentage of itself that's visible in all four of its corners, so you can see these ratios change over time as you scroll the container. Each box has a different set of thresholds:
IntersectionObserver.thresholds
array is [0.00, 0.01, 0.02, ..., 0.99, 1.00]
.When the amount of a target element which is visible within the root element crosses one of the visibility thresholds,
IntersectionObserver
Document
's viewport. The ancestor or viewport is referred to as the root.IntersectionObserverEntry
IntersectionObserver
callback, or by calling IntersectionObserver.takeRecords()
.This simple example causes a target element to change its color and transparency as it becomes more or less visible. At Timing element visibility with the Intersection Observer API, you can find a more extensive example showing how to time how long a set of elements (such as ads) are visible to the user and to react to that information by recording statistics or by updating elements..
The HTML for this example is very short, with a primary element which is the box that we'll be targeting (with the creative ID "box"
) and some contents within the box.
<div id="box"> <div class="vertical"> Welcome to <strong>The Box!</strong> </div> </div>
The CSS isn't terribly important for the purposes of this example; it lays out the element and establishes that the background-color
and border
attributes can participate in CSS transitions, which we'll use to affect the changes to the element as it becomes more or less obscured.
#box { background-color: rgba(40, 40, 190, 255); border: 4px solid rgb(20, 20, 120); transition: background-color 1s, border 1s; width: 350px; height: 350px; display: flex; align-items: center; justify-content: center; padding: 20px; } .vertical { color: white; font: 32px "Arial"; } .extra { width: 350px; height: 350px; margin-top: 10px; border: 4px solid rgb(20, 20, 120); text-align: center; padding: 20px; }
Finally, let's take a look at the JavaScript code that uses the Intersection Observer API to make things happen.
First, we need to prepare some variables and install the observer.
var numSteps = 20.0; var boxElement; var prevRatio = 0.0; var increasingColor = "rgba(40, 40, 190, ratio)"; var decreasingColor = "rgba(190, 40, 40, ratio)"; // Set things up. window.addEventListener("load", function(event) { boxElement = document.querySelector("#box"); createObserver(); }, false);
The constants and variables we set up here are:
numSteps
prevRatio
increasingColor
decreasingColor
We call Window.addEventListener()
to start listening for the load
event; once the page has finished loading, we get a reference to the element with the ID "box"
using querySelector()
, then call the createObserver()
method we'll create in a moment to handle building and installing the intersection observer.
The createObserver()
method is called once page load is complete to handle actually creating the new IntersectionObserver
and starting the process of observing the target element.
function createObserver() { var observer; var options = { root: null, rootMargin: "0px", threshold: buildThresholdList() }; observer = new IntersectionObserver(handleIntersect, options); observer.observe(boxElement); }
This begins by setting up an options
object containing the settings for the observer. We want to watch for changes in visibility of the target element relative to the document's viewport, so root
is null
. We need no margin, so the margin offset, rootMargin
, is specified as "0px". This causes the observer to watch for changes in the intersection between the target element's bounds and those of the viewport, without any added (or subtracted) space.
The list of visibility ratio thresholds, threshold
, is constructed by the function buildThresholdList()
. The threshold list is built programmatically in this example since there are a number of them and the number is intended to be adjustable.
Once options
is ready, we create the new observer, calling the IntersectionObserver()
constructor, specifying a function to be called when intersection crosses one of our thresholds, handleIntersect()
, and our set of options. We then call observe()
on the returned observer, passing into it the desired target element.
We could opt to monitor multiple elements for visibility intersection changes with respect to the viewport by calling observer.observe()
for each of those elements, if we wanted to do so.
The buildThresholdList()
function, which builds the list of thresholds, looks like this:
function buildThresholdList() { var thresholds = []; for (var i=1.0; i<=numSteps; i++) { var ratio = i/numSteps; thresholds.push(ratio); } thresholds.push(0); return thresholds; }
This builds the array of thresholds—each of which is a ratio between 0.0 and 1.0, by pushing the value i/numSteps
onto the thresholds
array for each integer i
between 1 and numSteps
. It also pushes 0 to include that value. The result, given the default value of numSteps
(20), is the following list of thresholds:
# | Ratio | # | Ratio |
---|---|---|---|
1 | 0.05 | 11 | 0.55 |
2 | 0.1 | 12 | 0.6 |
3 | 0.15 | 13 | 0.65 |
4 | 0.2 | 14 | 0.7 |
5 | 0.25 | 15 | 0.75 |
6 | 0.3 | 16 | 0.8 |
7 | 0.35 | 17 | 0.85 |
8 | 0.4 | 18 | 0.9 |
9 | 0.45 | 19 | 0.95 |
10 | 0.5 | 20 | 1.0 |
We could, of course, hard-code the array of thresholds into our code, and often that's what you'll end up doing. But this example leaves room for adding configuration controls to adjust the granularity, for example.
When the browser detects that the target element (in our case, the one with the ID "box"
) has been unveiled or obscured such that its visibility ratio crosses one of the thresholds in our list, it calls our handler function, handleIntersect()
:
function handleIntersect(entries, observer) { entries.forEach(function(entry) { if (entry.intersectionRatio > prevRatio) { entry.target.style.backgroundColor = increasingColor.replace("ratio", entry.intersectionRatio); } else { entry.target.style.backgroundColor = decreasingColor.replace("ratio", entry.intersectionRatio); } prevRatio = entry.intersectionRatio; }); }
For each IntersectionObserverEntry
in the list entries
, we look to see if the entry's intersectionRatio
is going up; if it is, we set the target's background-color
to the string in increasingColor
(remember, it's "rgba(40, 40, 190, ratio)"
), replaces the word "ratio" with the entry's intersectionRatio
. The result: not only does the color get changed, but the transparency of the target element changes, too; as the intersection ratio goes down, the background color's alpha value goes down with it, resulting in an element that's more transparent.
Similarly, if the intersectionRatio
is going up, we use the string decreasingColor
and replace the word "ratio" in that with the intersectionRatio
before setting the target element's background-color
.
Finally, in order to track whether the intersection ratio is going up or down, we remember the current ratio in the variable prevRatio
.
Below is the resulting content. Scroll this page up and down and notice how the appearance of the box changes as you do so.
There's an even more extensive example at Timing element visibility with the Intersection Observer API.
Specification | Status | Comment |
---|---|---|
Intersection Observer | Working Draft |
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|---|
Basic support | 51 | 15 | 55 (55)[1][2] | No support | 38 | WebKit bug 159475 |
Feature | Android Webview | Chrome for Android | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|
Basic support | 51 | 51 | 55.0 (55)[1][2] | No support | No support | 38 | WebKit bug 159475 |
[1] This feature has been implemented since Gecko 53.0 (Firefox 53.0 / Thunderbird 53.0 / SeaMonkey 2.50) behind the preference dom.IntersectionObserver.enabled
, which was false
by default. Enabled by default beginning in Firefox 55. See bug 1243846.
[2] Firefox doesn't currently take the clip-path
of ancestor elements into account when computing the visibility of an element within its root. See bug 1319140 for the status of this issue.
IntersectionObserver
and IntersectionObserverEntry
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API