ant-design/components/popconfirm/demo/placement.md

75 lines
2.0 KiB
Markdown
Raw Normal View History

2015-06-24 19:20:47 +08:00
# 位置
- order: 1
2016-03-16 22:06:02 +08:00
位置有十二个方向。
2015-06-24 19:20:47 +08:00
---
````jsx
import { Popconfirm, message, Button } from 'antd';
const text = '确定要删除这个任务吗?';
2015-06-24 19:20:47 +08:00
function confirm() {
2015-07-17 00:25:03 +08:00
message.info('点击了确定');
2015-06-24 19:20:47 +08:00
}
2015-10-20 16:47:55 +08:00
ReactDOM.render(<div>
<div style={{ marginLeft: 60 }}>
2015-11-05 18:14:20 +08:00
<Popconfirm placement="topLeft" title={text} onConfirm={confirm}>
<Button>上左</Button>
</Popconfirm>
<Popconfirm placement="top" title={text} onConfirm={confirm}>
<Button>上边</Button>
</Popconfirm>
<Popconfirm placement="topRight" title={text} onConfirm={confirm}>
<Button>上右</Button>
</Popconfirm>
</div>
<div style={{ width: 60, float: 'left' }}>
2015-11-05 18:14:20 +08:00
<Popconfirm placement="leftTop" title={text} onConfirm={confirm}>
<Button>左上</Button>
</Popconfirm>
<Popconfirm placement="left" title={text} onConfirm={confirm}>
<Button>左边</Button>
</Popconfirm>
<Popconfirm placement="leftBottom" title={text} onConfirm={confirm}>
<Button>左下</Button>
</Popconfirm>
</div>
<div style={{ width: 60, marginLeft: 252 }}>
2015-11-05 18:14:20 +08:00
<Popconfirm placement="rightTop" title={text} onConfirm={confirm}>
<Button>右上</Button>
</Popconfirm>
<Popconfirm placement="right" title={text} onConfirm={confirm}>
<Button>右边</Button>
</Popconfirm>
<Popconfirm placement="rightBottom" title={text} onConfirm={confirm}>
<Button>右下</Button>
</Popconfirm>
</div>
<div style={{ marginLeft: 60, clear: 'both' }}>
2015-11-05 18:14:20 +08:00
<Popconfirm placement="bottomLeft" title={text} onConfirm={confirm}>
<Button>下左</Button>
</Popconfirm>
<Popconfirm placement="bottom" title={text} onConfirm={confirm}>
<Button>下边</Button>
</Popconfirm>
<Popconfirm placement="bottomRight" title={text} onConfirm={confirm}>
<Button>下右</Button>
</Popconfirm>
</div>
</div>, mountNode);
2015-06-24 19:20:47 +08:00
````
<style>
2015-06-26 10:22:08 +08:00
.code-box-demo .ant-popover-wrap > a {
2015-06-24 19:20:47 +08:00
margin-right: 1em;
}
.code-box-demo .ant-btn {
margin-right: 1em;
margin-bottom: 1em;
}
2015-06-24 19:20:47 +08:00
</style>