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.
|
|
|
---
|
|
|
|
order: 3
|
|
|
|
title:
|
|
|
|
zh-CN: 倒计时
|
|
|
|
en-US: Countdown
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
倒计时组件。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Countdown component.
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
import { Statistic, Row, Col } from 'antd';
|
|
|
|
|
|
|
|
const Countdown = Statistic.Countdown;
|
|
|
|
const deadline = Date.now() + 1000 * 60 * 60 * 24 * 2 + 1000 * 30; // Moment is also OK
|
|
|
|
|
|
|
|
function onFinish() {
|
|
|
|
console.log('finished!');
|
|
|
|
}
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<Row gutter={16}>
|
|
|
|
<Col span={12}>
|
|
|
|
<Countdown title="Countdown" value={deadline} onFinish={onFinish} />
|
|
|
|
</Col>
|
|
|
|
<Col span={12}>
|
|
|
|
<Countdown title="Million Seconds" value={deadline} format="HH:mm:ss:SSS" />
|
|
|
|
</Col>
|
|
|
|
<Col span={24} style={{ marginTop: 32 }}>
|
|
|
|
<Countdown title="Day Level" value={deadline} format="D 天 H 时 m 分 s 秒" />
|
|
|
|
</Col>
|
|
|
|
</Row>,
|
|
|
|
mountNode
|
|
|
|
);
|
|
|
|
```
|