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

25 lines
704 B
Markdown
Raw Normal View History

2015-08-04 17:41:12 +08:00
# 自动关闭的延时
2015-08-03 15:17:12 +08:00
- order: 1
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: '我不会自动关闭,我不会自动关闭,我不会自动关闭,我不会自动关闭,我不会自动关闭,我不会自动关闭,我不会自动关闭',
2015-11-04 18:07:10 +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>
2015-08-04 17:41:12 +08:00
, document.getElementById('components-notification-demo-duration'));
2015-08-04 15:16:10 +08:00
````