---
category: 2
title: 修改延时
title_en: Customize duration
---

 zh-CN

自定义时长 `10s`，默认时长为 `3s`。

 en-US

Customize message display duration from default `3s` to `10s`.

````jsx
import { message, Button } from 'parkball';

const success = () => {
  message.success('This is a prompt message for success, and it will disappear in 10 seconds', 10);
};

ReactDOM.render(
  <Button onClick={success}>Customized display duration</Button>,
  mountNode);
````
