微信小程序实现时间进度条功能

看,田野里的玉米露出了笑脸,秋风吹过,闪烁着太阳的光芒,秋天是金色的。看满山的枫叶,红得就像一团火焰在熊熊燃烧,散发着生机,秋天是红色的。呵呵,我们都错了,秋天不是金黄的,也不是红色的,秋天是五颜六色的。

关于答题类,或者一些游戏环节的小程序需要用到时间进度条,该功能怎么实现?看下面源码

<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
  })
 }
 
})

以上就是微信小程序实现时间进度条功能。要记住每一个对你好的人,因为他们本可以不这么做的。更多关于微信小程序实现时间进度条功能请关注haodaima.com其它相关文章!

您可能有感兴趣的文章
PHP解密支付宝小程序的加密数据、手机号的示例代码

Yii使用EasyWechat实现小程序获取用户的openID的方法

基于PHP实现微信小程序客服消息功能

PHP文件上传小程序 适合初学者学习!

PHP实现微信小程序用户授权的工具类示例