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.

39 lines
677 B

# 进度圈动态展示
10 years ago
- order: 4
会动的进度条才是好进度条。
---
````jsx
var ProgressCircle = antd.Progress.Circle;
var MyProgress = React.createClass({
getInitialState() {
return {
percent: 0
};
},
componentDidMount: function() {
var self = this;
setInterval(function() {
if (self.state.percent < 100) {
self.state.percent += 4;
10 years ago
}
self.setState({
percent: self.state.percent
});
}, 200);
10 years ago
},
render() {
return <ProgressCircle percent={this.state.percent} />;
}
});
React.render(
<MyProgress />
, document.getElementById('components-progress-demo-circle-dynamic'));
````