mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-02 23:18:02 +08:00
ff13ac0f5e
* init
* number format
* add Countdown
* ⚡ Try something ts stuff
* move out Countdown
* add format
* support countdown
* add prefix & suffix
* Move Number to Statistic
* adjust ts
* clean up
* roll back of lodash
* update doc & style
* variable of the less style
* add demo test
* full coverage
* hide title if not need
* update snapshot
* update accessiblity
* update color
* stop countdown when time is out
* formatTimeStr adjust
* use reset class
* add miss tab index
* update doc
* update title prop & snapshot
* rm additional aria. It's over design
* use card sample on unit demo
* sfc
* adjust demo
37 lines
716 B
Markdown
37 lines
716 B
Markdown
---
|
|
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
|
|
|
|
ReactDOM.render(
|
|
<Row gutter={16}>
|
|
<Col span={12}>
|
|
<Countdown title="Countdown" value={deadline} />
|
|
</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
|
|
);
|
|
```
|