48 lines
838 B
Markdown
48 lines
838 B
Markdown
<cn>
|
|
#### 自定义进度条渐变色
|
|
`linear-gradient` 的封装。推荐只传两种颜色。
|
|
</cn>
|
|
|
|
<us>
|
|
#### Custom line gradient
|
|
A package of `linear-gradient`. It is recommended to only pass two colors.
|
|
</us>
|
|
|
|
```vue
|
|
<template>
|
|
<div>
|
|
<a-progress
|
|
:stroke-color="{
|
|
'0%': '#108ee9',
|
|
'100%': '#87d068',
|
|
}"
|
|
:percent="99.9"
|
|
/>
|
|
<a-progress
|
|
:stroke-color="{
|
|
from: '#108ee9',
|
|
to: '#87d068',
|
|
}"
|
|
:percent="99.9"
|
|
status="active"
|
|
/>
|
|
<a-progress
|
|
type="circle"
|
|
:stroke-color="{
|
|
'0%': '#108ee9',
|
|
'100%': '#87d068',
|
|
}"
|
|
:percent="90"
|
|
/>
|
|
<a-progress
|
|
type="circle"
|
|
:stroke-color="{
|
|
'0%': '#108ee9',
|
|
'100%': '#87d068',
|
|
}"
|
|
:percent="100"
|
|
/>
|
|
</div>
|
|
</template>
|
|
```
|