2017-06-30 17:22:01 +08:00
|
|
|
---
|
|
|
|
order: 3
|
|
|
|
title:
|
|
|
|
zh-CN: 自动调整位置
|
|
|
|
en-US: Adjust placement automatically
|
2017-07-14 10:42:01 +08:00
|
|
|
debug: true
|
2017-06-30 17:22:01 +08:00
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
气泡框不可见时自动调整位置
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Adjust popup placement automatically when popup is invisible
|
|
|
|
|
|
|
|
````jsx
|
|
|
|
import { Tooltip, Button } from 'antd';
|
|
|
|
|
|
|
|
const wrapStyles = {
|
|
|
|
overflow: 'hidden',
|
|
|
|
position: 'relative',
|
|
|
|
padding: '24px',
|
|
|
|
border: '1px solid #e9e9e9',
|
|
|
|
};
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<div style={wrapStyles}>
|
|
|
|
<Tooltip placement="left" title="Prompt Text" getPopupContainer={trigger => trigger.parentElement}>
|
|
|
|
<Button>Adjust automatically / 自动调整</Button>
|
|
|
|
</Tooltip>
|
|
|
|
<br />
|
|
|
|
<Tooltip placement="left" title="Prompt Text" getPopupContainer={trigger => trigger.parentElement} autoAdjustOverflow={false}>
|
|
|
|
<Button>Ingore / 不处理</Button>
|
|
|
|
</Tooltip>
|
2018-06-27 15:55:04 +08:00
|
|
|
</div>,
|
|
|
|
mountNode);
|
2017-06-30 17:22:01 +08:00
|
|
|
````
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.code-box-demo .ant-btn {
|
|
|
|
margin-right: 1em;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
</style>
|