mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-22 19:51:42 +08:00

* docs: Add components overview page * fix detail * remove ContributorsList form overview page * fix components url * improve code style * remove extra file * fix detail * fix lint * fix lint * docs: Finish components overview page * fix lint * docs: Update cover * fix lint * update cover * update menu * improve overview page * refactor code * fix order * update title * add components count * fix overview page ssr bug * move less file * update title margin Co-authored-by: arvinxx <arvinx@foxmail.com>
991 B
991 B
category | type | title | cover |
---|---|---|---|
Components | Data Display | Popover | https://gw.alipayobjects.com/zos/antfincdn/GkviFueLQwx/Popover.svg |
The floating card popped by clicking or hovering.
When To Use
A simple popup menu to provide extra information or operations.
Comparing with Tooltip
, besides information Popover
card can also provide action elements like links and buttons.
API
Param | Description | Type | Default value | Version |
---|---|---|---|---|
content | Content of the card | string|ReactNode|() => ReactNode | - | |
title | Title of the card | string|ReactNode|() => ReactNode | - |
Consult Tooltip's documentation to find more APIs.
Note
Please ensure that the child node of Popover
accepts onMouseEnter
, onMouseLeave
, onFocus
, onClick
events.