ant-design/components/progress/demo/circle-dynamic.md

56 lines
1010 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 4
2016-07-26 15:42:04 +08:00
title:
zh-CN: 进度圈动态展示
en-US: Dynamic circular progress bar
2016-03-31 09:40:55 +08:00
---
2015-06-15 16:31:51 +08:00
2016-07-26 15:42:04 +08:00
## zh-CN
2015-06-15 16:31:51 +08:00
会动的进度条才是好进度条。
2016-07-26 15:42:04 +08:00
## en-US
A dynamic progress bar is better.
2019-05-07 14:57:32 +08:00
```jsx
import { Progress, Button } from 'antd';
import { MinusOutlined, PlusOutlined } from '@ant-design/icons';
2018-06-27 15:55:04 +08:00
class App extends React.Component {
state = {
percent: 0,
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
increase = () => {
2015-09-22 20:11:28 +08:00
let percent = this.state.percent + 10;
if (percent > 100) {
percent = 100;
}
this.setState({ percent });
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
decline = () => {
2015-09-22 20:11:28 +08:00
let percent = this.state.percent - 10;
if (percent < 0) {
percent = 0;
}
this.setState({ percent });
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
2015-06-15 16:31:51 +08:00
render() {
return (
<>
2016-04-05 16:51:26 +08:00
<Progress type="circle" percent={this.state.percent} />
<Button.Group>
<Button onClick={this.decline} icon={<MinusOutlined />} />
<Button onClick={this.increase} icon={<PlusOutlined />} />
</Button.Group>
</>
);
}
}
2015-06-15 16:31:51 +08:00
export default App;
2019-05-07 14:57:32 +08:00
```