mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 04:58:55 +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
987 B
987 B
order | title | ||||
---|---|---|---|---|---|
1 |
|
zh-CN
自定义通知框自动关闭的延时,默认 4.5s
,取消自动关闭只要将该值设为 0
即可。
en-US
Duration
can be used to specify how long the notification stays open. After the duration time elapses, the notification closes automatically. If not specified, default value is 4.5 seconds. If you set the value to 0, the notification box will never close automatically.
import { Button, notification } from 'antd';
const openNotification = () => {
const args = {
message: 'Notification Title',
description:
'I will never close automatically. This is a purposely very very long description that has many many characters and words.',
duration: 0,
};
notification.open(args);
};
export default () => (
<Button type="primary" onClick={openNotification}>
Open the notification box
</Button>
);