中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信小程序實現時間進度條功能

發布時間:2020-09-20 11:15:06 來源:腳本之家 閱讀:330 作者:£AP︶ㄣOL◢◤LO 欄目:web開發

關于答題類,或者一些游戲環節的小程序需要用到時間進度條,該功能怎么實現?看下面源碼

<view class='out' style='margin-top:10px'>
 <view class='in' style='width:{{progressWidth}}%'></view>
</view>
<view class='caozuo'>
 <text>{{progressTime}}秒</text>
 <text bindtap='playbtn' data-change='1'>{{playPausetips}}</text>
</view>

CSS:

.out {margin-left:auto;margin-right:auto;width:250px;height:20px;border:1px solid red;border-radius:20px;overflow:hidden;}
.in {height:100%;background-color:red;}
.caozuo{font-size:14px;color:#333;margin-left:auto;margin-right:auto;width:250px;margin-top:10px;display: flex;justify-content:space-between}

JS:

Page({
 data: {
  progressWidth:0,
  progressTime:60,
  mark:true,
  playPausetips:"開始"
 },
 playbtn() {
  let that = this;
  let mark = that.data.mark;
  if (mark){
   that.timer = setInterval(that.run, 1000); //that.timer關鍵點
   wx.showToast({
    title: '開始',
   })
   that.setData({
    mark:false,
    playPausetips:"暫停"
   })
  }else{
   clearInterval(that.timer);
   wx.showToast({
    title: '暫停',
   })
   that.setData({
    mark: true,
    playPausetips: "開始"
   })
  }
 },
 run(){
  let that = this;
  let totalProgressTime = 60 //秒
  let progressWidth = that.data.progressWidth; //顯示進度
  let progressTime = that.data.progressTime; //時間
 
  if (progressWidth === 100) {
   wx.showToast({
    title: '結束回調處理',
   })
   clearInterval(that.timer);
   that.setData({
    progressTime: totalProgressTime,  //進度條需要總時間s
    progressWidth: 100, //進度100%
    progressTime: 60
   })
   return;
  }
  progressTime--;
  progressWidth = (totalProgressTime - progressTime) * (100 / 60)
  that.setData({
   progressWidth: progressWidth,
   progressTime: progressTime
  })
 }
 
})

微信小程序實現時間進度條功能

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乌拉特中旗| 黔西| 淄博市| 清新县| 瑞丽市| 萝北县| 长治县| 镇沅| 澄城县| 兴仁县| 青海省| 广东省| 余江县| 镇远县| 富裕县| 郓城县| 台北县| 灌南县| 沅江市| 静安区| 江口县| 崇明县| 勃利县| 比如县| 新乐市| 延长县| 乡宁县| 阿巴嘎旗| 奉新县| 南岸区| 三台县| 沾化县| 邹城市| 石门县| 南通市| 临夏县| 邻水| 沛县| 贡嘎县| 烟台市| 弥渡县|