CountDown倒计时

倒计时组件。

引用方式:

import CountDown from 'ant-design-pro/lib/CountDown';

详细使用方式请参照:独立使用 pro 组件

代码演示

简单的倒计时组件使用。

expand codeexpand code
import CountDown from 'ant-design-pro/lib/CountDown';

const targetTime = new Date().getTime() + 3900000;

ReactDOM.render(<CountDown style={{ fontSize: 20 }} target={targetTime} />, mountNode);

API#

参数 说明 类型 默认值
format 时间格式化显示 Function(time)
target 目标时间 Date -
onEnd 倒计时结束回调 funtion -