ant-design/components/tooltip/demo/arrow-point-at-center.md

33 lines
700 B
Markdown
Raw Normal View History

---
order: 2
title:
zh-CN: 箭头指向
en-US: Arrow pointing at the center
---
## zh-CN
设置了 `arrowPointAtCenter` 后,箭头将指向目标元素的中心。
## en-US
By specifying `arrowPointAtCenter` prop, the arrow will point to the center of the target element.
```tsx
2022-05-21 22:14:15 +08:00
import { Button, Tooltip } from 'antd';
import React from 'react';
const App: React.FC = () => (
<>
<Tooltip placement="topLeft" title="Prompt Text">
2016-10-07 15:20:10 +08:00
<Button>Align edge / 边缘对齐</Button>
</Tooltip>
<Tooltip placement="topLeft" title="Prompt Text" arrowPointAtCenter>
2016-10-07 15:20:10 +08:00
<Button>Arrow points to center / 箭头指向中心</Button>
</Tooltip>
</>
2018-11-28 15:00:03 +08:00
);
export default App;
2019-05-07 14:57:32 +08:00
```