ant-design/components/notification/demo/duration.md
PCCCCCCC 1d09d6fe0c
Replace part of the Demo of the notification with the hooks (#35710)
* docs: modify the part demo to hooks

* docs: modify the part demo to hooks
2022-05-25 10:14:51 +08:00

44 lines
1.1 KiB
Markdown

---
order: 1
title:
zh-CN: 自动关闭的延时
en-US: Duration after which the notification box is closed
---
## 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.
```tsx
import { Button, notification } from 'antd';
import React from 'react';
const App: React.FC = () => {
const [api, contextHolder] = notification.useNotification();
const openNotification = () => {
api.open({
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,
});
};
return (
<>
{contextHolder}
<Button type="primary" onClick={openNotification}>
Open the notification box
</Button>
</>
);
};
export default App;
```