91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

發布時間: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

宝坻区| 巨鹿县| 台北县| 兴宁市| 车险| 格尔木市| 凤阳县| 鄂尔多斯市| 平安县| 隆子县| 申扎县| 宜宾县| 海宁市| 汉阴县| 天长市| 梓潼县| 河东区| 光山县| 康定县| 黔西| 讷河市| 乐昌市| 龙陵县| 乌拉特后旗| 永福县| 青铜峡市| 镇沅| 祁连县| 腾冲县| 溆浦县| 蒙山县| 梧州市| 舞钢市| 大连市| 西畴县| 偃师市| 外汇| 重庆市| 伊吾县| 永丰县| 林周县|