mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-06 02:15:35 +08:00
39a11f00a0
* upload - translations of two remaining demos * alert & tooltip - remaining demo translations * Prompt typo
738 B
738 B
order | title | ||||
---|---|---|---|---|---|
2 |
|
zh-CN
设置了 arrowPointAtCenter
后,箭头将指向目标元素的中心。
en-US
By specifying arrowPointAtCenter
prop, the arrow will point to the center of the target element.
import { Tooltip, Button } from 'antd';
ReactDOM.render(
<div>
<Tooltip placement="topLeft" title="Prompt Text">
<Button>Tooltip default pointing alignment</Button>
</Tooltip>
<Tooltip placement="topLeft" title="Prompt Text" arrowPointAtCenter>
<Button>Tooltip central alignment</Button>
</Tooltip>
</div>
, mountNode);