For sighted users to preview content available behind a link.
import React from 'react';import * as HoverCard from '@radix-ui/react-hover-card';import './styles.css';const HoverCardDemo = () => (<HoverCard.Root><HoverCard.Trigger asChild><a className="ImageTrigger" href="https://twitter.com/radix_ui" target="_blank" rel="noreferrer noopener" ><img className="Image normal" src="https://pbs.twimg.com/profile_images/1337055608613253126/r_eiMp2H_400x400.png" alt="Radix UI" /></a></HoverCard.Trigger><HoverCard.Portal><HoverCard.Content className="HoverCardContent" sideOffset={5}><div style={{ display: 'flex', flexDirection: 'column', gap: 7 }}><img className="Image large" src="https://pbs.twimg.com/profile_images/1337055608613253126/r_eiMp2H_400x400.png" alt="Radix UI" /><div style={{ display: 'flex', flexDirection: 'column', gap: 15 }}><div><div className="Text bold">Radix</div><div className="Text faded">@radix_ui</div></div><div className="Text">Components, icons, colors, and templates for building high-quality, accessible UI.Free and open-source.</div><div style={{ display: 'flex', gap: 15 }}><div style={{ display: 'flex', gap: 5 }}><div className="Text bold">0</div> <div className="Text faded">Following</div></div><div style={{ display: 'flex', gap: 5 }}><div className="Text bold">2,900</div> <div className="Text faded">Followers</div></div></div></div></div><HoverCard.Arrow className="HoverCardArrow" /></HoverCard.Content></HoverCard.Portal></HoverCard.Root>);export default HoverCardDemo;
Can be controlled or uncontrolled.
Customize side, alignment, offsets, collision handling.
Optionally render a pointing arrow.
Supports custom open and close delays.
Ignored by screen readers.
Install the component from your command line.
Import all parts and piece them together.
Contains all the parts of a hover card.
The link that opens the hover card when hovered.
When used, portals the content part into the body
.
The component that pops out when the hover card is open.
An optional arrow element to render alongside the hover card. This can be used to help visually link the trigger with the HoverCard.Content
. Must be rendered inside HoverCard.Content
.
Use the openDelay
prop to control the time it takes for the hover card to open.
You may want to constrain the width of the content so that it matches the trigger width. You may also want to constrain its height to not exceed the viewport.
We expose several CSS custom properties such as --radix-hover-card-trigger-width
and --radix-hover-card-content-available-height
to support this. Use them to constrain the content dimensions.
We expose a CSS custom property --radix-hover-card-content-transform-origin
. Use it to animate the content from its computed origin based on side
, sideOffset
, align
, alignOffset
and any collisions.
We expose data-side
and data-align
attributes. Their values will change at runtime to reflect collisions. Use them to create collision and direction-aware animations.
The hover card is intended for sighted users only, the content will be inaccessible to keyboard users.