ant-design/components/progress/demo/gradient-line.md

57 lines
924 B
Markdown
Raw Normal View History

---
order: 11
title:
zh-CN: 自定义进度条渐变色
en-US: Custom line gradient
---
## zh-CN
`linear-gradient` 的封装。推荐只传两种颜色。
## en-US
A package of `linear-gradient`. It is recommended to only pass two colors.
2019-05-07 14:57:32 +08:00
```jsx
import { Progress } from 'antd';
const Demo = () => (
<div>
<Progress
strokeColor={{
'0%': '#108ee9',
'100%': '#87d068',
}}
percent={99.9}
/>
<Progress
strokeColor={{
from: '#108ee9',
to: '#87d068',
}}
percent={99.9}
status="active"
/>
2019-06-26 18:13:45 +08:00
<Progress
type="circle"
strokeColor={{
'0%': '#108ee9',
'100%': '#87d068',
}}
percent={90}
/>
<Progress
type="circle"
strokeColor={{
'0%': '#108ee9',
'100%': '#87d068',
}}
percent={100}
/>
</div>
);
ReactDOM.render(<Demo />, mountNode);
2019-05-07 14:57:32 +08:00
```