gpt4 book ai didi

antd - 如何根据值更改 ant design 进度条颜色?

转载 作者:行者123 更新时间:2023-12-05 06:17:12 26 4
gpt4 key购买 nike

我想给“黄色”颜色直到 50%,50% 之后它会显示“绿色”。

它不像strokeColor 功能。我想看黄色或绿色。不在一起。

是否可以处理它(最好没有 css)?

import { Progress } from 'antd';
<Progress 
percent={this.state.progress}
/>

最佳答案

使用 strokeColor Prop :

<Progress 
percent={this.state.progress}
strokeColor={this.state.progress < 50 ? "yellow" : "green"}
/>

在那里检查:https://codesandbox.io/s/dynamic-ant-design-demo-icli2

关于antd - 如何根据值更改 ant design 进度条颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61750257/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com