You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
599 B
14 lines
599 B
<!--pages/test/progress.wxml-->
|
|
<text>pages/test/progress.wxml</text>
|
|
<view class="title">progress</view>
|
|
<view class="demobox">
|
|
<view class="title">1.进度条右侧显示百分比</view>
|
|
<progress percent="25" show-info="true"></progress>
|
|
<view class="title">2.线条宽度为20px的进度条</view>
|
|
<progress percent="50" stroke-width="20"></progress>
|
|
<view class="title">3.自定义颜色的进度条</view>
|
|
<progress percent="80" activeColor="red"></progress>
|
|
<view class="title">4.带有动画效果的进度条</view>
|
|
<progress percent="100" active="true"></progress>
|
|
</view>
|