2016-08-31 13:50:50 +08:00
|
|
|
---
|
|
|
|
order: 2
|
2016-09-14 09:52:14 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 箭头指向
|
|
|
|
en-US: Arrow pointing at the center
|
2016-08-31 13:50:50 +08:00
|
|
|
---
|
|
|
|
|
2016-09-14 09:52:14 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2016-08-31 13:50:50 +08:00
|
|
|
设置了 `arrowPointAtCenter` 后,箭头将指向目标元素的中心。
|
|
|
|
|
2016-09-14 09:52:14 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
By specifying `arrowPointAtCenter` prop, the arrow will point to the center of the target element.
|
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2016-08-31 13:50:50 +08:00
|
|
|
import { Tooltip, Button } from 'antd';
|
|
|
|
|
|
|
|
ReactDOM.render(
|
2021-06-30 11:48:11 +08:00
|
|
|
<>
|
2016-09-14 09:52:14 +08:00
|
|
|
<Tooltip placement="topLeft" title="Prompt Text">
|
2016-10-07 15:20:10 +08:00
|
|
|
<Button>Align edge / 边缘对齐</Button>
|
2016-08-31 13:50:50 +08:00
|
|
|
</Tooltip>
|
2016-09-14 09:52:14 +08:00
|
|
|
<Tooltip placement="topLeft" title="Prompt Text" arrowPointAtCenter>
|
2016-10-07 15:20:10 +08:00
|
|
|
<Button>Arrow points to center / 箭头指向中心</Button>
|
2016-08-31 13:50:50 +08:00
|
|
|
</Tooltip>
|
2021-06-30 11:48:11 +08:00
|
|
|
</>,
|
2019-05-07 14:57:32 +08:00
|
|
|
mountNode,
|
2018-11-28 15:00:03 +08:00
|
|
|
);
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|