uniapp微信小程序进度条progress渐变色效果(demo)

在这里插入图片描述

<view style="margin: 20px;">
	<progress percent="60" stroke-width="14" activeColor="#05A081" border-radius="6px" />
</view>

.wx-progress-inner-bar {
    
    
	border-radius: 6px !important;
	background:linear-gradient(to right,#05A081,#87CBCB);
}

猜你喜欢

转载自blog.csdn.net/qq_38881495/article/details/133266802