ant-design/components/notification/demo/duration.md

24 lines
656 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 1
title: 自动关闭的延时
---
2015-08-03 15:17:12 +08:00
2015-08-29 13:02:37 +08:00
自定义通知框自动关闭的延时,默认`4.5s`,取消自动关闭只要将该值设为 `0` 即可。
2015-08-03 15:17:12 +08:00
````jsx
import { Button, notification } from 'antd';
2015-08-03 15:17:12 +08:00
const openNotification = function () {
const args = {
message: '这是标题',
description: '我不会自动关闭,我不会自动关闭,我不会自动关闭,我不会自动关闭,我不会自动关闭,我不会自动关闭,我不会自动关闭',
2016-05-11 09:32:33 +08:00
duration: 0,
2015-08-03 15:17:12 +08:00
};
notification.open(args);
};
2015-10-20 16:47:55 +08:00
ReactDOM.render(
<Button type="primary" onClick={openNotification}>打开通知提醒框</Button>
, mountNode);
2015-08-04 15:16:10 +08:00
````