第八篇、微信小程序-progress组件

时间:2023-03-08 22:06:08
第八篇、微信小程序-progress组件

主要属性:

第八篇、微信小程序-progress组件

效果图:

第八篇、微信小程序-progress组件

ml:

<View >
<!--百分比是30,并在进度条右侧显示百分比-->
<Text class="text-style">百分比是30,并在进度条右侧显示百分比</Text>
<progress percent="30" show-info />
<!--百分比是40,进度条线的宽度12px-->
<Text class="text-style">百分比是40,进度条线的宽度12px</Text>
<progress percent="40" stroke-width="12" />
<!--百分比是60,进度条颜色:pink-->
<Text class="text-style">百分比是60,进度条颜色:pink</Text>
<progress percent="60" color="pink" />
<!--百分比是80,进度条从左往右的动画-->
<Text class="text-style">百分比是80,进度条从左往右的动画</Text>
<progress percent="80" show-info active />
</View>

ss:

.text-style{
font-size: 13px;
}