ant-design/components/popover/index.md

29 lines
1.3 KiB
Markdown
Raw Normal View History

2015-06-15 22:01:39 +08:00
# Popover
- category: Components
- chinese: 气泡卡片
2015-08-22 20:16:24 +08:00
- type: 展示
2015-06-15 22:01:39 +08:00
---
2015-06-17 16:58:13 +08:00
点击/鼠标移入元素,弹出气泡式的卡片浮层。
## 何时使用
2015-07-20 11:08:23 +08:00
当目标元素有进一步的描述和相关操作时,可以收纳到卡片中,根据用户的操作行为进行展现。
2015-06-17 16:58:13 +08:00
2015-06-17 19:15:37 +08:00
`Tooltip` 的区别是,用户可以对浮层上的元素进行操作,因此它可以承载更复杂的内容,比如链接或按钮等。
2015-06-17 16:58:13 +08:00
## API
| 参数 | 说明 | 类型 | 默认值 |
|-----------|------------------------------------------|---------------|--------|
| trigger | 触发行为,可选 `hover/focus/click` | string | hover |
2015-11-04 20:48:51 +08:00
| placement | 气泡框位置,可选 `top/left/right/bottom/topLeft/topRight/bottomLeft/bottomRight/leftTop/leftBottom/rightTop/rightBottom` | string | top |
2015-06-17 19:15:37 +08:00
| title | 卡片标题 | React.Element | 无 |
| overlay | 卡片内容 | React.Element | 无 |
2015-11-10 16:18:20 +08:00
| prefixCls | 浮层的类名 | string | ant-popover |
| visible | 用于手动控制浮层显隐 | boolean | false |
| onVisibleChange | 显示隐藏改变的回调 | function | 无 |