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

29 lines
523 B
Markdown
Raw Normal View History

2015-06-15 14:43:27 +08:00
# 进度圈
2015-06-14 20:07:21 +08:00
2015-06-15 16:49:37 +08:00
- order: 1
2015-06-14 20:07:21 +08:00
2015-06-15 14:43:27 +08:00
圈形的进度。
2015-06-14 20:07:21 +08:00
---
````jsx
2015-11-19 13:42:10 +08:00
import { Progress, Icon } from 'antd';
const ProgressCircle = Progress.Circle;
2015-06-14 20:07:21 +08:00
2015-10-20 16:47:55 +08:00
ReactDOM.render(
2015-06-14 20:07:21 +08:00
<div>
2015-10-26 20:14:41 +08:00
<ProgressCircle percent={30} />
2015-11-19 13:42:10 +08:00
<ProgressCircle percent={70} status="exception" format={<Icon type="exclamation" />} />
2015-10-26 20:14:41 +08:00
<ProgressCircle percent={100} />
2015-06-14 20:07:21 +08:00
</div>
, document.getElementById('components-progress-demo-circle'));
````
2015-06-15 11:00:27 +08:00
<style>
.ant-progress-circle-wrap,
.ant-progress-line-wrap {
2015-06-15 14:07:20 +08:00
margin-right: 8px;
margin-bottom: 5px;
2015-06-15 11:00:27 +08:00
}
</style>