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
|
2015-08-20 16:56:19 +08:00
|
|
|
var notification = antd.Notification;
|
2015-10-08 15:13:04 +08:00
|
|
|
var Button = antd.Button;
|
2015-08-03 15:17:12 +08:00
|
|
|
|
|
|
|
var openNotification = function() {
|
|
|
|
var args = {
|
|
|
|
message: "这是标题",
|
|
|
|
description: "这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案",
|
2015-08-04 17:41:12 +08:00
|
|
|
duration: 10
|
2015-08-03 15:17:12 +08:00
|
|
|
};
|
|
|
|
notification.open(args);
|
|
|
|
};
|
|
|
|
|
2015-10-20 16:47:55 +08:00
|
|
|
ReactDOM.render(
|
2015-10-08 15:13:04 +08:00
|
|
|
<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
|
|
|
````
|