这篇文章主要为大家详细介绍了微信小程序动态显示项目倒计时,格式如4天7小时58分钟39秒,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
本文实例为大家分享了微信小程序动态显示项目倒计时的具体代码,供搭建源码点我wcqh.cn大家参考,具体内容如下
1、一般我们说的显示秒杀都是指的单条数据,循环我没做。
效果:
2、wxml代码:
1
2
3
4
<p>
<block wx:if=”{{total_micro_second<=0}}”>剩余搭建源码点我wcqh.cn时间:已经截止</block>
<block wx:if=”{{clock!='已经截止'}}”>剩余时间:{{clock}}</block>
</p>
3、.js文件代码:
1
2
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
function countdown(that) {
var EndTime = that.data.end_time || [];
v搭建源码点我wcqh.cnar NowTime = new Date().getTime();
var total_micro_second = EndTime – NowTime || [];
console.log('搭建源码点我wcqh.cn剩余时间:' + total_micro_second);
// 渲染倒计时时钟
that.setData({
clock: dateformat(total_micro_second)
});
if 搭建源码点我wcqh.cn(total_micro_second <= 0) {
that.setData({
clock: “已经截止”
});
//return;
}
setTimeout(function () {
total_mic搭建源码点我wcqh.cnro_second -= 1000;
countdown(that);
}
, 1000)
}
// 时间格式化输出,如11:03 25:19 每1s都会调用一次
function dateformat(micr搭建源码点我wcqh.cno_second) {
// 总秒数
var second = Math.floor(micro_second / 1000);
// 天数
var day = Math.floor(second/3600/搭建源码点我wcqh.cn24);
// 小时
var hr = Math.floor(second/3600%24);
// 分钟
var min = Math.floor(second/60%60);
// 秒
var sec = M搭建源码点我wcqh.cnath.floor(second%60);
return day + “天” + hr + “小时” + min + “分钟” + sec+”秒”;
}
Page({
/**
* 页面的初始数据
*/
data: 搭建源码点我wcqh.cn{
id:'',
result:[],
end_time:'',
clock:''
},/**
* 生命周期函数–监听页面加载
*/
onLoad: function搭建源码点我wcqh.cn (options) {
var that = this;
wx.request({
url: 'https://m.******.com/index.php/Home/Xiaoxxf/activi搭建源码点我wcqh.cnty_detail?a_id='+options.id,//不含富文本html
data: {},
method: 'GET', // OPTIONS, GET, HEAD, PO搭建源码点我wcqh.cnST, PUT, DELETE, TRACE, CONNECT
header: {
'Content-Type': 'application/json'
},
success:搭建源码点我wcqh.cn function (res) {
that.setData({
common: res.data, //一维数组,全部数据
end_time: res.data.end_time //项目截止时间,时间戳搭建源码点我wcqh.cn,单位毫秒
})
console.log(that.data.common);
console.log('结束时间:' + that.data.end_time);
},
fail: funct搭建源码点我wcqh.cnion (res) { },
complete: function (res) { },
}),
//调用上面定义的递归函数,一秒一刷新时间
countdown(that);
},
以上就是本文的全部内搭建源码点我wcqh.cn容,希望对大家的学习有所帮助,更多相关内容请关注PHP中文网!
相关推荐:
以上就是微信小程序动态显示项目倒计时的效果的详细内容,更多请关注php中文网其它相关文章!
暂无评论内容