mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 00:49:39 +08:00
7fd093bd0a
* docs: add general components TS demo * docs: add layout components TS demo * docs: add navigation components TS demo * docs: add data entry components TS demo * chore(deps): add types for qs * docs: add data display TS demo * docs: add feedback components TS demo * docs: add other components TS demo * chore(deps): add types * docs: unified demo code style * docs: fix lint error * docs: add demo TS type * docs: fix demo TS type * test: update snapshot * docs: fix TS demo * feat: update Rate character type * docs: fix lint error * feat: update Rate character type * feat: update Rate character type
33 lines
700 B
Markdown
33 lines
700 B
Markdown
---
|
|
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
|
|
import React from 'react';
|
|
import { Tooltip, Button } from 'antd';
|
|
|
|
const App: React.FC = () => (
|
|
<>
|
|
<Tooltip placement="topLeft" title="Prompt Text">
|
|
<Button>Align edge / 边缘对齐</Button>
|
|
</Tooltip>
|
|
<Tooltip placement="topLeft" title="Prompt Text" arrowPointAtCenter>
|
|
<Button>Arrow points to center / 箭头指向中心</Button>
|
|
</Tooltip>
|
|
</>
|
|
);
|
|
|
|
export default App;
|
|
```
|