countdown.js
1.57 KB
1
2
3
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
56
57
58
59
60
61
62
/**
* 倒计时控件
* @author: wsl<shuiling.wang@yoho.cn>
* @date: 2016/5/20
*/
var $ = require('yoho-jquery');
var $activityTime = $('.activity-time'),
endTime = $activityTime ? $activityTime.data('time-s') : '';
var params = {
anHour: 3600, // 1小时=?秒
aMinute: 60, // 1分钟=?秒
aSecond: 1, // 1秒=?秒
timeDom: $activityTime, // 时间对象数组
endTime: [endTime] // 时间差数组
};
// 倒计时
function getRTime(conf) {
var showTime = '',
d = 0,
h = 0,
m = 0,
s = 0;
conf.timeDom.each(function(key, item) {
showTime = '';
conf.endTime[key] = conf.endTime[key] - conf.aSecond;
if (conf.endTime[key] > conf.aSecond) {
d = Math.floor(conf.endTime[key] / conf.anHour / 24);
h = Math.floor(conf.endTime[key] / conf.anHour % 24);
m = Math.floor(conf.endTime[key] / conf.aMinute % 60);
s = Math.floor(conf.endTime[key] / conf.aSecond % 60);
showTime += d > 0 ? d + '天' : '';
showTime += h > 0 ? h + '小时' : '';
showTime += m + '分钟';
showTime += s > 0 ? s + '秒' : '';
if (showTime.length !== '') {
showTime = '剩' + showTime;
}
$(item).find('span').html(showTime);
$(item).fadeIn();
} else {
$(item).hide();
}
});
}
function startCountDown(p) {
$.extend(params, p || {});
setInterval(function() {
getRTime(params);
}, 1000);
}
module.exports = startCountDown;