ant-design/components/notification/demo/duration.md
afc163 753c01ae18 ES6 syntax for demo code
fix antd.notification
2015-10-28 20:55:49 +08:00

708 B

自动关闭的延时

  • order: 1

自定义通知框自动关闭的延时,默认4.5s,取消自动关闭只要将该值设为 0 即可。


import { Button, notification } from 'antd';

const openNotification = function() {
  const args = {
    message: "这是标题",
    description: "这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案",
    duration: 10
  };
  notification.open(args);
};

ReactDOM.render(
  <Button type="primary" onClick={openNotification}>打开通知提醒框</Button>
, document.getElementById('components-notification-demo-duration'));