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: 4
|
|
|
|
|
|
|
|
会动的进度条才是好进度条。
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
````jsx
|
|
|
|
var Progress = antd.Progress.Line;
|
|
|
|
|
|
|
|
var MyProgress = React.createClass({
|
|
|
|
getInitialState() {
|
|
|
|
return {
|
|
|
|
percent: 0
|
|
|
|
};
|
|
|
|
},
|
|
|
|
componentDidMount: function() {
|
|
|
|
var self = this;
|
|
|
|
setInterval(function() {
|
|
|
|
if (self.state.percent < 100) {
|
|
|
|
self.state.percent += 4;
|
|
|
|
}
|
|
|
|
self.setState({
|
|
|
|
percent: self.state.percent
|
|
|
|
});
|
|
|
|
}, 200);
|
|
|
|
},
|
|
|
|
render() {
|
|
|
|
return <Progress percent={this.state.percent} />;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
React.render(
|
|
|
|
<MyProgress />
|
|
|
|
, document.getElementById('components-progress-demo-dynamic'));
|
|
|
|
````
|
|
|
|
|