mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 09:49:57 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
25 lines
473 B
Markdown
25 lines
473 B
Markdown
---
|
|
order: 2
|
|
title:
|
|
zh-CN: 修改延时
|
|
en-US: Customize duration
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
自定义时长 `10s`,默认时长为 `3s`。
|
|
|
|
## en-US
|
|
|
|
Customize message display duration from default `3s` to `10s`.
|
|
|
|
```jsx
|
|
import { message, Button } from 'antd';
|
|
|
|
const success = () => {
|
|
message.success('This is a prompt message for success, and it will disappear in 10 seconds', 10);
|
|
};
|
|
|
|
export default () => <Button onClick={success}>Customized display duration</Button>;
|
|
```
|