You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
390 B
Markdown
20 lines
390 B
Markdown
10 years ago
|
# Circle 用法
|
||
|
|
||
|
- order: 0
|
||
|
|
||
|
Progress Circle用法
|
||
|
|
||
|
---
|
||
|
|
||
|
````jsx
|
||
|
var Circle = antd.Progress.Circle;
|
||
|
|
||
|
React.render(
|
||
|
<div>
|
||
|
<Circle percent="30" width="200" strokeWidth="4" />
|
||
|
<Circle percent="70" width="200" strokeWidth="4" status="exception" />
|
||
|
<Circle percent="100" width="200" strokeWidth="4" />
|
||
|
</div>
|
||
|
, document.getElementById('components-progress-demo-circle'));
|
||
|
````
|