2017-01-27 17:12:25 +08:00
|
|
|
---
|
|
|
|
order: 5
|
|
|
|
title:
|
|
|
|
zh-CN: 位置
|
|
|
|
en-US: Placement
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
2019-11-16 16:24:28 +08:00
|
|
|
通知从右上角、右下角、左下角、左上角弹出。
|
2017-01-27 17:12:25 +08:00
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
2019-04-19 22:36:29 +08:00
|
|
|
A notification box can appear from the `topRight`, `bottomRight`, `bottomLeft` or `topLeft` of the viewport.
|
2017-01-27 17:12:25 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2020-04-30 21:04:19 +08:00
|
|
|
import { Button, notification, Divider, Space } from 'antd';
|
2019-11-25 15:37:08 +08:00
|
|
|
import {
|
2019-11-28 12:34:33 +08:00
|
|
|
RadiusUpleftOutlined,
|
|
|
|
RadiusUprightOutlined,
|
|
|
|
RadiusBottomleftOutlined,
|
|
|
|
RadiusBottomrightOutlined,
|
2022-01-27 17:26:19 +08:00
|
|
|
BorderTopOutlined,
|
|
|
|
BorderBottomOutlined,
|
2019-11-25 15:37:08 +08:00
|
|
|
} from '@ant-design/icons';
|
2017-01-27 17:12:25 +08:00
|
|
|
|
2019-11-16 16:24:28 +08:00
|
|
|
const openNotification = placement => {
|
|
|
|
notification.info({
|
|
|
|
message: `Notification ${placement}`,
|
2019-05-07 14:57:32 +08:00
|
|
|
description:
|
|
|
|
'This is the content of the notification. This is the content of the notification. This is the content of the notification.',
|
2019-11-16 16:24:28 +08:00
|
|
|
placement,
|
2017-01-27 17:12:25 +08:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<div>
|
2022-01-27 17:26:19 +08:00
|
|
|
<Space>
|
|
|
|
<Button type="primary" onClick={() => openNotification('top')}>
|
|
|
|
<BorderTopOutlined />
|
|
|
|
top
|
|
|
|
</Button>
|
|
|
|
<Button type="primary" onClick={() => openNotification('bottom')}>
|
|
|
|
<BorderBottomOutlined />
|
|
|
|
bottom
|
|
|
|
</Button>
|
|
|
|
</Space>
|
|
|
|
<Divider />
|
2020-04-30 21:04:19 +08:00
|
|
|
<Space>
|
|
|
|
<Button type="primary" onClick={() => openNotification('topLeft')}>
|
|
|
|
<RadiusUpleftOutlined />
|
|
|
|
topLeft
|
|
|
|
</Button>
|
|
|
|
<Button type="primary" onClick={() => openNotification('topRight')}>
|
|
|
|
<RadiusUprightOutlined />
|
|
|
|
topRight
|
|
|
|
</Button>
|
|
|
|
</Space>
|
2019-11-16 16:24:28 +08:00
|
|
|
<Divider />
|
2020-04-30 21:04:19 +08:00
|
|
|
<Space>
|
|
|
|
<Button type="primary" onClick={() => openNotification('bottomLeft')}>
|
|
|
|
<RadiusBottomleftOutlined />
|
|
|
|
bottomLeft
|
|
|
|
</Button>
|
|
|
|
<Button type="primary" onClick={() => openNotification('bottomRight')}>
|
|
|
|
<RadiusBottomrightOutlined />
|
|
|
|
bottomRight
|
|
|
|
</Button>
|
|
|
|
</Space>
|
2018-06-27 15:55:04 +08:00
|
|
|
</div>,
|
2019-05-07 14:57:32 +08:00
|
|
|
mountNode,
|
2018-11-28 15:00:03 +08:00
|
|
|
);
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|