本文實例為大家分享了小程序投票進度條的具體代碼,供大家參考,具體內(nèi)容如下
我們提供的服務(wù)有:成都網(wǎng)站設(shè)計、成都做網(wǎng)站、外貿(mào)網(wǎng)站建設(shè)、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認證、崆峒ssl等。為1000多家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的崆峒網(wǎng)站制作公司
示例圖:
上代碼:
index.wxml:
進度 {{width}} 當(dāng)前票數(shù) {{quorumvotes}}
index.wxss
.clo_jdt { width: 100%; border: 1px solid #6c9c2c; height: 25px; border-radius: 10px; } .clo_jdt view { background: #95ca0d; float: left; height: 100%; text-align: center; line-height: 150%; border-radius: 10px 0 0 10px; }
index.js
Page({ data: { quorumvotes: 50,//當(dāng)前票數(shù) width: "0%",//投票進度 votes: 500 //最多可投票數(shù) }, onLoad: function() { //獲取總票數(shù) var votes = this.data.votes; //獲取當(dāng)前票數(shù) var quorumvotes = this.data.quorumvotes; //進度 var speed = quorumvotes/votes*100+"%"; console.log(speed) this.setData({ width: speed, }); })
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。