docs.rodeo

MDN Web Docs mirror

Using the Popover API

{{DefaultAPISidebar("Popover API")}} 

The Popover API provides developers with a standard, consistent, flexible mechanism for displaying popover content on top of other page content. Popover content can be controlled either declaratively using HTML attributes, or via JavaScript. This article provides a detailed guide to using all of its features.

Creating declarative popovers

In its simplest form, a popover is created by adding the popover attribute to the element that you want to contain your popover content. An id is also needed to associate the popover with its controls.

<div id="mypopover" popover>Popover content</div>

[!NOTE] Setting the popover attribute with no value is equivalent to setting popover="auto".

Adding this attribute causes the element to be hidden on page load by having {{cssxref("display", "display: none")}}  set on it. To show/hide the popover, you need to add at least one control button (also know as the popover invoker). You can set a {{htmlelement("button")}}  (or {{htmlelement("input")}}  of type="button") as a popover control button by giving it a popovertarget attribute, the value of which should be the ID of the popover to control:

<button popovertarget="mypopover">Toggle the popover</button>
<div id="mypopover" popover>Popover content</div>

The default behavior is for the button to be a toggle button — pressing it repeatedly will toggle the popover between showing and hidden.

If you want to change that behavior, you can use the popovertargetaction attribute — this takes a value of "hide", "show", or "toggle". For example, to create separate show and hide buttons, you could do this:

<button popovertarget="mypopover" popovertargetaction="show">
  Show popover
</button>
<button popovertarget="mypopover" popovertargetaction="hide">
  Hide popover
</button>
<div id="mypopover" popover>Popover content</div>

You can see how the previous code snippet renders in our Basic declarative popover example (source).

[!NOTE] If the popovertargetaction attribute is omitted, "toggle" is the default action that will be performed by a control button.

When a popover is shown, it has display: none removed from it and it is put into the {{glossary("top layer")}}  so it will sit on top of all other page content.

auto state, and “light dismiss”

When a popover element is set with popover or popover="auto" as shown above, it is said to have auto state. The two important behaviors to note about auto state are:

Note: popover="auto" popovers are also dismissed by successful {{domxref("HTMLDialogElement.showModal()")}}  and {{domxref("Element.requestFullscreen()")}}  calls on other elements in the document. Bear in mind however that calling these methods on a shown popover will result in failure because those behaviors don’t make sense on an already-shown popover. You can however call them on an element with the popover attribute that isn’t currently being shown.

Auto state is useful when you only want to show a single popover at once. Perhaps you have multiple teaching UI messages that you want to show, but don’t want the display to start getting cluttered and confusing, or perhaps you are showing status messages where the new status overrides any previous status.

You can see the behavior described above in action in our Multiple auto popovers example (source). Try light dismissing the popovers after they are shown, and see what happens when you try to show both at the same time.

Popover accessibility features

When a relationship is established between a popover and its control (invoker) via the popovertarget attribute, the API automatically makes two other changes to the environment to allow keyboard and assistive technology (AT) users to more easily interact with the popover:

Setting up a relationship between a popover and its control in this manner also creates an implicit anchor reference between the two — see Popover anchor positioning for more details.

Other ways to set up a popover-invoker relationship

You can set up a popover-invoker relationship in other ways, in addition to using the popovertarget attribute:

Using manual popover state

One alternative to auto state is manual state, achieved by setting popover="manual" on your popover element:

<div id="mypopover" popover="manual">Popover content</div>

In this state:

You can see this behavior in action in our Multiple manual popovers example (source).

Showing popovers via JavaScript

You can also control popovers using a JavaScript API.

The {{domxref("HTMLElement.popover")}}  property can be used to get or set the popover attribute. This can be used to create a popover via JavaScript, and is also useful for feature detection. For example:

function supportsPopover() {
  return HTMLElement.prototype.hasOwnProperty("popover");
}

Similarly:

Putting these three together, you can programmatically set up a popover and its control button, like so:

const popover = document.getElementById("mypopover");
const toggleBtn = document.getElementById("toggleBtn");

const keyboardHelpPara = document.getElementById("keyboard-help-para");

const popoverSupported = supportsPopover();

if (popoverSupported) {
  popover.popover = "auto";
  toggleBtn.popoverTargetElement = popover;
  toggleBtn.popoverTargetAction = "toggle";
} else {
  toggleBtn.style.display = "none";
}

You also have several methods to control showing and hiding:

For example, you might want to provide the ability to toggle a help popover on and off by clicking a button or pressing a particular key on the keyboard. The first one could be achieved declaratively, or you could do it using JavaScript as shown above.

For the second one, you could create an event handler that programs two separate keys — one to open the popover and one to close it again:

document.addEventListener("keydown", (event) => {
  if (event.key === "h") {
    if (popover.matches(":popover-open")) {
      popover.hidePopover();
    }
  }

  if (event.key === "s") {
    if (!popover.matches(":popover-open")) {
      popover.showPopover();
    }
  }
});

This example uses {{domxref("Element.matches()")}}  to programmatically check whether a popover is currently showing. The {{cssxref(":popover-open")}}  pseudo-class matches only popovers that are currently being shown. This is important to avoid the errors that are thrown if you try to show an already-shown popover, or hide an already-hidden popover.

Alternatively, you could program a single key to show and hide the popover like this:

document.addEventListener("keydown", (event) => {
  if (event.key === "h") {
    popover.togglePopover();
  }
});

See our Toggle help UI example (source) to see the popover JavaScript properties, feature detection, and togglePopover() method in action.

Nested popovers

There is an exception to the rule about not displaying multiple auto popovers at once — when they are nested inside one another. In such cases, multiple popovers are allowed to both be open at the same time, due to their relationship with each other. This pattern is supported to enable use cases such as nested popover menus.

There are three different ways to create nested popovers:

  1. Direct DOM descendants:

    <div popover>
      Parent
      <div popover>Child</div>
    </div>
    
  2. Via invoking/control elements:

    <div popover>
      Parent
      <button popovertarget="foo">Click me</button>
    </div>
    
    <div popover id="foo">Child</div>
    
  3. Via the anchor attribute:

    <div popover id="foo">Parent</div>
    
    <div popover anchor="foo">Child</div>
    

See our Nested popover menu example (source) for an example. You’ll notice that quite a few event handlers have been used to display and hide the subpopover appropriately during mouse and keyboard access, and also to hide both menus when an option is selected from either. Depending on how you handle loading of new content, either in an SPA or multi-page website, some of all of these may not be necessary, but they have been included in this demo for illustrative purposes.

Using “hint” popover state

There is a third type of popover you can create — hint popovers, designated by setting popover="hint" on your popover element. hint popovers do not close auto popovers when they are displayed, but will close other hint popovers. They can be light dismissed and will respond to close requests.

This is useful for situations where, for example, you have toolbar buttons that can be pressed to show UI popovers, but you also want to reveal tooltips when the buttons are hovered, without closing the UI popovers.

hint popovers tend to be shown and hidden in response to non-click JavaScript events such as mouseover/mouseout and focus/blur. Clicking a button to open a hint popover would cause an open auto popover to light-dismiss.

See our popover hint demo (source) for an example that behaves exactly as described above. The demo features a button bar; when pressed, the buttons show auto popup sub-menus inside which further options can be selected. However, when hovered over or focused, the buttons also show tooltips (hint popovers) to give the user an idea of what each button does, which do not hide a currently-showing sub-menu.

In the below sections, we’ll walk through all the important parts of the code.

[!NOTE] You can use hint popovers alongside manual popovers, although there is not really much of a reason to. They are designed to circumvent some of the limitations of auto popovers, enabling use cases like the one detailed in this section.

Note also that popover="hint" falls back to popover="manual" in unsupporting browsers.

Creating the sub-menus with popover="auto"

The popup sub-menus are created declaratively, using auto popovers.

First, the control buttons:

<section id="button-bar">
  <button popovertarget="submenu-1" popovertargetaction="toggle" id="menu-1">
    Menu A
  </button>

  <button popovertarget="submenu-2" popovertargetaction="toggle" id="menu-2">
    Menu B
  </button>

  <button popovertarget="submenu-3" popovertargetaction="toggle" id="menu-3">
    Menu C
  </button>
</section>

Now, the popovers themselves:

<div id="submenu-1" popover="auto">
  <button>Option A</button><br /><button>Option B</button>
</div>
<div id="submenu-2" popover="auto">
  <button>Option A</button><br /><button>Option B</button>
</div>
<div id="submenu-3" popover="auto">
  <button>Option A</button><br /><button>Option B</button>
</div>

Creating the tooltips with popover="hint"

The sub-menu popovers work fine as they are, opening when the toolbar buttons are pressed, but how do we also show tooltips on button hover/focus? First, we create the tooltips in HTML, using hint popovers:

<div id="tooltip-1" class="tooltip" popover="hint">Tooltip A</div>
<div id="tooltip-2" class="tooltip" popover="hint">Tooltip B</div>
<div id="tooltip-3" class="tooltip" popover="hint">Tooltip C</div>

To control the showing/hiding, we need to use JavaScript. First of all, we grab references to the hint popovers and the control buttons in two separate {{domxref("NodeList")}} s using {{domxref("Document.querySelectorAll()")}} :

const tooltips = document.querySelectorAll(".tooltip");
const btns = document.querySelectorAll("#button-bar button");

Next, we create a function, addEventListeners(), which sets four event listeners (via {{domxref("EventTarget.addEventListener()")}} ) on a given {{htmlelement("button")}} , chosen by grabbing the <button> at a specific index value of the btns NodeList. The functions act on the hint popover at the same index value of the tooltips NodeList, allowing us to keep the buttons and the tooltips in sync — showing/hiding the correct tooltip when a button is interacted with.

The event listeners show the popover on mouseover and focus, and hide the popover on mouseout and blur, meaning that the tooltips can be accessed via mouse and keyboard.

function addEventListeners(i) {
  btns[i].addEventListener("mouseover", () => {
    tooltips[i].showPopover({ source: btns[i] });
  });

  btns[i].addEventListener("mouseout", () => {
    tooltips[i].hidePopover();
  });

  btns[i].addEventListener("focus", () => {
    tooltips[i].showPopover({ source: btns[i] });
  });

  btns[i].addEventListener("blur", () => {
    tooltips[i].hidePopover();
  });
}

Finally, we use a for loop to iterate through the <buttons> in the btns NodeList, calling the addEventListeners() function for each one so that all of them have the desired event listeners set.

for (let i = 0; i < btns.length; i++) {
  addEventListeners(i);
}

Styling popovers

This section covers some CSS selection and positioning techniques relevant to popovers.

Selecting popovers

You can select all popovers with a simple attribute selector:

[popover] {
  /* Declarations here */
}

Alternatively, you can select a specific popover type by including a value in the attribute selector:

[popover="auto"] {
  /* Declarations here */
}

You can select only popovers that are showing using the {{cssxref(":popover-open")}}  pseudo-class:

:popover-open {
  /* Declarations here */
}

Styling the popover backdrop

The {{cssxref("::backdrop")}}  pseudo-element is a full-screen element placed directly behind showing popover elements in the {{glossary("top layer")}} , allowing effects to be added to the page content behind the popover(s) if desired. You might for example want to blur out the content behind the popover to help focus the user’s attention on it:

::backdrop {
  backdrop-filter: blur(3px);
}

See our Popover blur background example (source) for an idea of how this renders.

Positioning popovers

When looking at the first couple of examples linked at the start of the article, you may have noticed that the popovers appear in the middle of the viewport, wrap their content, and have a black border. This is the default styling, achieved using the following rule in the UA stylesheet:

[popover] {
  position: fixed;
  inset: 0;
  width: fit-content;
  height: fit-content;
  margin: auto;
  border: solid;
  padding: 0.25em;
  overflow: auto;
  color: CanvasText;
  background-color: Canvas;
}

To apply custom sizing and position the popover somewhere else, you could override the above styles with something like this:

:popover-open {
  width: 200px;
  height: 100px;
  position: absolute;
  inset: unset;
  bottom: 5px;
  right: 5px;
  margin: 0;
}

You can see an isolated example of this in our Popover positioning example (source).

Popover anchor positioning

There is another useful positioning option that the Popover API provides. If you want to position a popover relative to its invoker rather than the viewport or a positioned ancestor, you can take advantage of the fact that popovers and their invokers have an implicit anchor reference.

Associating any kind of popover with its invoker creates an implicit anchor reference between the two. This causes the invoker to become the popover’s anchor element, meaning that you can position the popover relative to it using CSS anchor positioning.

Because the association between the popover and the invoker is implicit, an explicit association does not need to be made using the {{cssxref("anchor-name")}}  and {{cssxref("position-anchor")}}  properties. However, you still need to specify the positioning CSS.

For example, you could use a combination of {{cssxref("anchor()")}}  function values set on {{glossary("inset properties")}} , and anchor-center values set on alignment properties:

.my-popover {
  bottom: calc(anchor(top) + 20px);
  justify-self: anchor-center;
}

Or you could use a {{cssxref("position-area")}}  property:

.my-popover {
  position-area: top;
}

See Using CSS anchor positioning for more details on associating anchor and positioned elements, and positioning elements relative to their anchor.

[!NOTE] For an example that uses this implicit association, see our popover hint demo (source). If you check out the CSS code, you’ll see that no explicit anchor associations are made using the {{cssxref("anchor-name")}}  and {{cssxref("position-anchor")}}  properties.

Animating popovers

Popovers are set to display: none; when hidden and display: block; when shown, as well as being removed from / added to the {{glossary("top layer")}}  and the accessibility tree. Therefore, for popovers to be animated, the {{cssxref("display")}}  property needs to be animatable. Supporting browsers animate display with a variation on the discrete animation type. Specifically, the browser will flip between none and another value of display so that the animated content is shown for the entire animation duration. So, for example:

[!NOTE] When animating using CSS transitions, transition-behavior: allow-discrete needs to be set to enable the above behavior. When animating with CSS animations, the above behavior is available by default; an equivalent step is not required.

Transitioning a popover

When animating popovers with CSS transitions, the following features are required:

Let’s have a look at an example so you can see what this looks like:

HTML

The HTML contains a {{htmlelement("div")}}  element declared to be a popover via the global popover HTML attribute, and a {{htmlelement("button")}}  element designated as the popover’s display control:

<button popovertarget="mypopover">Show the popover</button>
<div popover="auto" id="mypopover">I'm a Popover! I should animate.</div>

CSS

The two popover properties we want to transition are opacity and transform. We want the popover to fade in or out while growing or shrinking horizontally. To achieve this, we set a starting state for these properties on the hidden state of the popover element (selected with the [popover] attribute selector) and an end state for the shown state of the popover (selected via the :popover-open pseudo-class). We also use the transition property to define the properties to animate and the animation’s duration as the popover gets shown or hidden.

html {
  font-family: Arial, Helvetica, sans-serif;
}

/* Transition for the popover itself */

[popover]:popover-open {
  opacity: 1;
  transform: scaleX(1);
}

[popover] {
  font-size: 1.2rem;
  padding: 10px;

  /* Final state of the exit animation */
  opacity: 0;
  transform: scaleX(0);

  transition:
    opacity 0.7s,
    transform 0.7s,
    overlay 0.7s allow-discrete,
    display 0.7s allow-discrete;
  /* Equivalent to
  transition: all 0.7s allow-discrete; */
}

/* Needs to be after the previous [popover]:popover-open rule
to take effect, as the specificity is the same */
@starting-style {
  [popover]:popover-open {
    opacity: 0;
    transform: scaleX(0);
  }
}

/* Transition for the popover's backdrop */

[popover]::backdrop {
  background-color: rgb(0 0 0 / 0%);
  transition:
    display 0.7s allow-discrete,
    overlay 0.7s allow-discrete,
    background-color 0.7s;
  /* Equivalent to
  transition: all 0.7s allow-discrete; */
}

[popover]:popover-open::backdrop {
  background-color: rgb(0 0 0 / 25%);
}

/* The nesting selector (&) cannot represent pseudo-elements
so this starting-style rule cannot be nested */

@starting-style {
  [popover]:popover-open::backdrop {
    background-color: rgb(0 0 0 / 0%);
  }
}

As discussed earlier, we have also:

You’ll note that we’ve also included a transition on the ::backdrop appearing behind the popover when it opens, providing a nice darkening animation.

Result

The code renders as follows:

{{ EmbedLiveSample("Transitioning a popover", "100%", "200") }} 

[!NOTE] Because popovers change from display: none to display: block each time they are shown, the popover transitions from its @starting-style styles to its [popover]:popover-open styles every time the entry transition occurs. When the popover closes, it transitions from its [popover]:popover-open state to the default [popover] state.

It is possible for the style transition on entry and exit to be different in such cases. See our Demonstration of when starting styles are used example for a proof of this.

A popover keyframe animation

When animating a popover with CSS keyframe animations, there are some differences to note:

Let’s look at an example.

HTML

The HTML contains a {{htmlelement("div")}}  element declared as a popover, and a {{htmlelement("button")}}  element designated as the popover’s display control:

<button popovertarget="mypopover">Show the popover</button>
<div popover="auto" id="mypopover">I'm a Popover! I should animate.</div>

CSS

We have defined keyframes that specify the desired entry and exit animations, and an entry animation for the backdrop only. Note that it wasn’t possible to animate the backdrop fade out — the backdrop is immediately removed from the DOM when the popover is closed, so there is nothing to animate.

html {
  font-family: Arial, Helvetica, sans-serif;
}

[popover] {
  font-size: 1.2rem;
  padding: 10px;
  animation: fade-out 0.7s ease-out;
}

[popover]:popover-open {
  animation: fade-in 0.7s ease-out;
}

[popover]:popover-open::backdrop {
  animation: backdrop-fade-in 0.7s ease-out forwards;
}

/* Animation keyframes */

@keyframes fade-in {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
    transform: scaleX(1);
    /* display needed on the closing animation to keep the popover
    visible until the animation ends */
    display: block;
  }

  100% {
    opacity: 0;
    transform: scaleX(0);
    /* display: none not required here because it is the default value
    for a closed popover, but including it so the behavior is clear */
    display: none;
  }
}

@keyframes backdrop-fade-in {
  0% {
    background-color: rgb(0 0 0 / 0%);
  }

  100% {
    background-color: rgb(0 0 0 / 25%);
  }
}

Result

The code renders as follows:

{{ EmbedLiveSample("A popover keyframe animation", "100%", "200") }} 

In this article

View on MDN