You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
528 B

---
order: 2
title:
zh-CN: 修改延时
en-US: Customize duration
---
## zh-CN
7 years ago
自定义时长 `10s`,默认时长为 `3s`
## en-US
7 years ago
Customize message display duration from default `3s` to `10s`.
```tsx
import { Button, message } from 'antd';
import React from 'react';
const success = () => {
message.success('This is a prompt message for success, and it will disappear in 10 seconds', 10);
};
const App: React.FC = () => <Button onClick={success}>Customized display duration</Button>;
export default App;
```