update progress demo

This commit is contained in:
afc163 2015-06-15 14:43:27 +08:00
parent 61b7297ce4
commit 39bf1d09e7
6 changed files with 53 additions and 14 deletions

View File

@ -1,8 +1,8 @@
# Circle 用法
# 小型进度圈
- order: 0
- order: 3
Progress Circle用法
小一号的圈形进度。
---

View File

@ -1,8 +1,8 @@
# Circle 用法
# 进度圈
- order: 0
- order: 2
Progress Circle用法
圈形的进度。
---

View File

@ -0,0 +1,38 @@
# 动态展示
- order: 4
会动的进度条才是好进度条。
---
````jsx
var Line = 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 += 2;
}
self.setState({
percent: self.state.percent
});
}, 100);
},
render() {
return <Line percent={this.state.percent} width="300" strokeWidth="3" />;
}
});
React.render(
<MyProgress />
, document.getElementById('components-progress-demo-dynamic'));
````

View File

@ -1,8 +1,8 @@
# Line 用法
# 小型进度条
- order: 0
- order: 1
Progress Line用法
适合放在较狭窄的区域内。
---

View File

@ -1,8 +1,8 @@
# Line 用法
# 进度条
- order: 0
Progress Line用法
标准的进度条。
---

View File

@ -6,11 +6,12 @@
---
## 使用
展示操作的当前进度。
`<Line percent="30" />`
## 何时使用
`<Circle percent="30" />`
- 需要告知用户进行时、失败、已完成的等运行状态。
- 需要展示操作的百分比时。
## 属性参数