mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-17 02:18:07 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
87 lines
1.9 KiB
Markdown
Executable File
87 lines
1.9 KiB
Markdown
Executable File
---
|
|
order: 5
|
|
title:
|
|
zh-CN: 位置
|
|
en-US: Placement
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
使用 `placement` 可以配置通知从右上角、右下角、左下角、左上角弹出。
|
|
|
|
## en-US
|
|
|
|
A notification box can appear from the `topRight`, `bottomRight`, `bottomLeft` or `topLeft` of the viewport via `placement`.
|
|
|
|
```jsx
|
|
import { Button, notification, Divider, Space } from 'antd';
|
|
import {
|
|
RadiusUpleftOutlined,
|
|
RadiusUprightOutlined,
|
|
RadiusBottomleftOutlined,
|
|
RadiusBottomrightOutlined,
|
|
BorderTopOutlined,
|
|
BorderBottomOutlined,
|
|
} from '@ant-design/icons';
|
|
|
|
const openNotification = placement => {
|
|
notification.info({
|
|
message: `Notification ${placement}`,
|
|
description:
|
|
'This is the content of the notification. This is the content of the notification. This is the content of the notification.',
|
|
placement,
|
|
});
|
|
};
|
|
|
|
export default () => (
|
|
<>
|
|
<Space>
|
|
<Button type="primary" onClick={() => openNotification('top')} icon={<BorderTopOutlined />}>
|
|
top
|
|
</Button>
|
|
<Button
|
|
type="primary"
|
|
onClick={() => openNotification('bottom')}
|
|
icon={<BorderBottomOutlined />}
|
|
>
|
|
bottom
|
|
</Button>
|
|
</Space>
|
|
<Divider />
|
|
<Space>
|
|
<Button
|
|
type="primary"
|
|
onClick={() => openNotification('topLeft')}
|
|
icon={<RadiusUpleftOutlined />}
|
|
>
|
|
topLeft
|
|
</Button>
|
|
<Button
|
|
type="primary"
|
|
onClick={() => openNotification('topRight')}
|
|
icon={<RadiusUprightOutlined />}
|
|
>
|
|
topRight
|
|
</Button>
|
|
</Space>
|
|
<Divider />
|
|
<Space>
|
|
<Button
|
|
type="primary"
|
|
onClick={() => openNotification('bottomLeft')}
|
|
icon={<RadiusBottomleftOutlined />}
|
|
>
|
|
bottomLeft
|
|
</Button>
|
|
<Button
|
|
type="primary"
|
|
onClick={() => openNotification('bottomRight')}
|
|
icon={<RadiusBottomrightOutlined />}
|
|
>
|
|
bottomRight
|
|
</Button>
|
|
</Space>
|
|
</>
|
|
);
|
|
```
|