data: {
endTime: '2018-11-22 10:40:30'//2018/11/22 10:40:30这种格式也行
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
var _this= this;
_this.countDown()
},
// 倒计时
countDown:function(){
var _this=this;
var nowTime = new Date().getTime();//现在时间(时间戳)
var endTime = new Date(that.data.endTime).getTime();//结束时间(时间戳)
var time = (endTime-nowTime)/1000;//距离结束的毫秒数
// 获取天、时、分、秒
let day = parseInt(time / (60 * 60 * 24));
let hou = parseInt(time % (60 * 60 * 24) / 3600);
let min = parseInt(time % (60 * 60 * 24) % 3600 / 60);
let sec = parseInt(time % (60 * 60 * 24) % 3600 % 60);
// console.log(day + "," + hou + "," + min + "," + sec)
day = _this.timeFormin(day),
hou = _this.timeFormin(hou),
min = _this.timeFormin(min),
sec = _this.timeForm
微信小程序倒计时
最新推荐文章于 2023-04-19 15:10:43 发布
本文介绍如何在微信小程序中实现倒计时功能,包括将当前日期转换为时间戳及将结束时间转化为时间戳的方法。
摘要由CSDN通过智能技术生成