码迷,mamicode.com
首页 > 微信 > 详细

微信小程序【获取验证码】倒计时效果

时间:2018-01-03 17:33:02      阅读:328      评论:0      收藏:0      [点我收藏+]

标签:color   details   csdn   计时   获取   ndt   orm   cti   shu   

最近开始接触微信小程序,会记录一些相关的小功能——例如这次是点击【获取验证码】按钮出现的倒计时效果。

原文: http://blog.csdn.net/Wu_shuxuan/article/details/78539075  感谢

.wxml

   <button class="buttonget" disabled={{disabled}} data-id="2" bindtap="getVerificationCode">
            {{time}}
        </button>

.js

var interval = null //倒计时函数
Page({
  data: {
    date: 请选择日期,
    fun_id: 2,
    time: 获取验证码, //倒计时 
    currentTime: 60
  },
  getCode: function (options) {
    var that = this;
    var currentTime = that.data.currentTime
    interval = setInterval(function () {
      currentTime--;
      that.setData({
        time: currentTime + 
      })
      if (currentTime <= 0) {
        clearInterval(interval)
        that.setData({
          time: 获取,
          currentTime: 60,
          disabled: false
        })
      }
    }, 1000)
  },
  getVerificationCode() {
    this.getCode();
    var that = this
    that.setData({
      disabled: true
    })
  },

})

.wxss

.buttonget
{  
   margin-right: 250rpx;
   width:110rpx;
   height:55rpx;
   color: #20B6C5;
   line-height: 50rpx;
   font-size: 25rpx;
   border:1rpx solid #20B6C5;
}

/*隐藏Button按钮本身的边框*/

button[class="buttonget"]::after {
  border: 0;
} 

 

 

微信小程序【获取验证码】倒计时效果

标签:color   details   csdn   计时   获取   ndt   orm   cti   shu   

原文地址:https://www.cnblogs.com/Early-Bird/p/8184193.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!