mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-11 23:00:20 +08:00
977e2e32fc
修正默认对齐方式为边缘对齐,增加属性用于箭头指向中心的行为
29 lines
597 B
Markdown
29 lines
597 B
Markdown
---
|
|
order: 2
|
|
title: 箭头指向
|
|
---
|
|
|
|
设置了 `arrowPointAtCenter` 后,箭头将指向目标元素的中心。
|
|
|
|
````jsx
|
|
import { Tooltip, Button } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<div>
|
|
<Tooltip placement="topLeft" title="提示文字 提示文字">
|
|
<Button>默认对齐元素边缘</Button>
|
|
</Tooltip>
|
|
<Tooltip placement="topLeft" title="提示文字 提示文字" arrowPointAtCenter>
|
|
<Button>箭头指向目标元素的中心</Button>
|
|
</Tooltip>
|
|
</div>
|
|
, mountNode);
|
|
````
|
|
|
|
<style>
|
|
.code-box-demo .ant-btn {
|
|
margin-right: 1em;
|
|
margin-bottom: 1em;
|
|
}
|
|
</style>
|