


progress progress barComponent description:
The progress bar indicates how far things are currently completed, allowing users to visually perceive the execution of things.
The progress bar is a component of the WeChat applet, similar to the HTML5 progress bar progress.
The following is the WXML code:
[XML] Plain text view Copy code
<!--index.wxml--> <view class="content"> <text class="con-text">问:老司机,啥时候开车?</text> <progress class="con-pro" percent="97" show-info/> </view>
The following is the JS code:
[JavaScript] Plain text view Copy code
Page({ data:{ }, onLoad:function(options){ // 页面初始化 options为页面跳转所带来的参数 }, onReady:function(){ // 页面渲染完成 }, onShow:function(){ // 页面显示 }, onHide:function(){ // 页面隐藏 }, onUnload:function(){ // 页面关闭 } })
The following is the WXSS code:
[CSS] Plain text view Copy code
.content{ padding-top: 20px; } .con-text{ display: block; padding-bottom: 20px; } .con-pro{ color: cornflowerblue; }
The following is the WXML code:
[XML] Plain text view Copy code
<!--index.wxml--> <view class="content"> <text class="con-text">不展示百分比</text> <progress class="con-pro" percent="77"/> <text class="con-text">展示百分比(百分比字体样式通过class控制)</text> <progress class="con-pro" percent="97" show-info/> <text class="con-text">改变进度条线的宽度:15px</text> <progress class="con-pro" percent="47" stroke-width="15"/> <text class="con-text">改变进度条颜色(#):黑色</text> <progress class="con-pro" percent="67" color="#000000"/> <text class="con-text">改变进度条颜色(已定义):橘色</text> <progress class="con-pro" percent="67" color="orange"/> <text class="con-text">几个属性叠加</text> <progress class="con-pro" percent="87" color="lightgreen" show-info stroke-width="30"/> </view>
The following is the JS code:
[JavaScript] Plain text view Copy code
Page({ data:{ }, onLoad:function(options){ // 页面初始化 options为页面跳转所带来的参数 }, onReady:function(){ // 页面渲染完成 }, onShow:function(){ // 页面显示 }, onHide:function(){ // 页面隐藏 }, onUnload:function(){ // 页面关闭 } })
The following is the WXSS code:
[CSS] Plain text view Copy code
.content{ padding-top: 20px; } .con-text{ display: block; padding-bottom: 10px; } .con-pro{ padding-bottom: 30px; color: cornflowerblue; }
The following is the WXML code:
[XML] Plain text view Copy code
<!--index.wxml--> <view class="content"> <text class="con-text">看我开的飞起</text> <progress class="con-pro" active percent="87" color="lightgreen" show-info stroke-width="20"/> </view>
The following is the JS code:
[JavaScript] Plain text view Copy code
Page({ data:{ }, onLoad:function(options){ // 页面初始化 options为页面跳转所带来的参数 }, onReady:function(){ // 页面渲染完成 }, onShow:function(){ // 页面显示 }, onHide:function(){ // 页面隐藏 }, onUnload:function(){ // 页面关闭 } })
The following is the WXSS code:
[CSS] Plain text view Copy code
.content{ padding-top: 20px; } .con-text{ display: block; padding-bottom: 10px; } .con-pro{ padding-bottom: 30px; color: cornflowerblue; }
progress progress barMain attributes:
Attributes |
Type |
Default value |
Description |
percent | float | 0 | represents a percentage of 0-100 |
show-info | Boolean | false | means displaying the percentage on the right side of the progress bar. Writing the attribute means true |
color | Color | #09BB07 | represents the color of the progress bar, which can be # or a defined color attribute |
Number | #6 | Unit: px, indicating the width of the line displayed by the progress bar | |
Boolean | false | represents the animation of the progress bar from left to right. The animation stops at the set percentage. If you write the attribute, it will be true |
The above is the detailed content of Interpretation and analysis of WeChat applet components: 6. progress bar. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

Dreamweaver Mac version
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software