這篇文章主要為大家詳細介紹了微信小程式動態顯示項目倒數計時,格式如4天7小時58分鐘39秒,具有一定的參考價值,有興趣的小夥伴們可以參考一下
本文實例為大家分享了微信小程式動態顯示專案倒數計時的具體程式碼,供大家參考,具體內容如下
1、一般我們說的顯示秒殺都是指的單一數據,循環我沒做。
效果:
2、wxml程式碼:
<p> <block wx:if="{{total_micro_second<=0}}">剩余时间:已经截止</block> <block wx:if="{{clock!='已经截止'}}">剩余时间:{{clock}}</block> </p>
3、. js檔案程式碼:
function countdown(that) { var EndTime = that.data.end_time || []; var NowTime = new Date().getTime(); var total_micro_second = EndTime - NowTime || []; console.log('剩余时间:' + total_micro_second); // 渲染倒计时时钟 that.setData({ clock: dateformat(total_micro_second) }); if (total_micro_second <= 0) { that.setData({ clock: "已经截止" }); //return; } setTimeout(function () { total_micro_second -= 1000; countdown(that); } , 1000) } // 时间格式化输出,如11:03 25:19 每1s都会调用一次 function dateformat(micro_second) { // 总秒数 var second = Math.floor(micro_second / 1000); // 天数 var day = Math.floor(second/3600/24); // 小时 var hr = Math.floor(second/3600%24); // 分钟 var min = Math.floor(second/60%60); // 秒 var sec = Math.floor(second%60); return day + "天" + hr + "小时" + min + "分钟" + sec+"秒"; } Page({ /** * 页面的初始数据 */ data: { id:'', result:[], end_time:'', clock:'' },/** * 生命周期函数--监听页面加载 */ onLoad: function (options) { var that = this; wx.request({ url: 'https://m.******.com/index.php/Home/Xiaoxxf/activity_detail?a_id='+options.id,//不含富文本html data: {}, method: 'GET', // OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT header: { 'Content-Type': 'application/json' }, success: function (res) { that.setData({ common: res.data, //一维数组,全部数据 end_time: res.data.end_time //项目截止时间,时间戳,单位毫秒 }) console.log(that.data.common); console.log('结束时间:' + that.data.end_time); }, fail: function (res) { }, complete: function (res) { }, }), //调用上面定义的递归函数,一秒一刷新时间 countdown(that); },
以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網!
相關推薦:
#
以上是微信小程式動態顯示項目倒數計時的效果的詳細內容。更多資訊請關注PHP中文網其他相關文章!