We often see the download progress bar in APP downloads. This progress bar is to interact with the user and inform the user of the current progress. Otherwise, the user will be kept waiting. If the user waits for more than 1 minute, it will crash. Today’s code I will teach you how to create a download progress bar in a mini program. This article mainly introduces the method of implementing a download progress bar in a WeChat mini program. I hope it can help you.
The progress bar is a component of the WeChat applet, similar to the HTML5 progress bar progress.
Introduction to progress attribute
Function | Parameter value | |
---|---|---|
Progress percentage 0~100 | ||
Display percentage on the right side of the progress bar | true/false Default false | |
Animation of the progress bar from left to right | true/false Default false | ##stroke-width |
Default 6px | color | |
#09BB07 | activeColor | |
|
1. Wxml view production
<progress percent="100" active='true' stroke-width="4" /> <view class='title-line'> progress</view> <view class='column'> <button class='button' type='primary' size='mini' bindtap='startDown'>开始下载</button> <text class="title">下载进度:</text> <progress percent="{{percent}}" show-info active='{{isDown}}' stroke-width="14" /> </view>
Page({ data: { isDown: false, percent: 0, }, startDown: function (e) { this.setData({ isDown: true, percent: 100, }) },
startDown handles the logic of starting the download, updates the download progress bar, and starts the download animation effect
Summary
The progress bar has many uses. The coder just listed the two examples above. In fact, the progress bar can also be used as a progress bar for the remaining sales of rush sales, the remaining time for completion, etc.
Related recommendations:WeChat applet implements the function of clicking the button to change the font color
How does the WeChat applet implement the image enlargement preview function
Detailed explanation of WeChat mini program video, music, and picture components
The above is the detailed content of How to implement download progress bar in WeChat applet. For more information, please follow other related articles on the PHP Chinese website!