jQuery 倒计时在日期后继续
jQuery countdown continue after date
我在这里使用了这段很棒的 jQuery 代码:
http://hilios.github.io/jQuery.countdown/
我正在尝试让它在结束日期之后工作。
你有什么主意吗?
它应该显示类似:
3 semaines soit 10 heures et 10 minutes
$('#timeout').countdown(finalDate, {elapse: true})
.countdown("2015/05/01 12:00:00", function(event) {
$(this).text(
event.strftime('%-w %!w:semaine,semaines; soit %-D %!D:jour,jours; et %-H %!H:heure,heures;')
);
});
谢谢!
我在这里使用了这段很棒的 jQuery 代码: http://hilios.github.io/jQuery.countdown/
我正在尝试让它在结束日期之后工作。 你有什么主意吗? 它应该显示类似:
3 semaines soit 10 heures et 10 minutes
$('#timeout').countdown(finalDate, {elapse: true})
.countdown("2015/05/01 12:00:00", function(event) {
$(this).text(
event.strftime('%-w %!w:semaine,semaines; soit %-D %!D:jour,jours; et %-H %!H:heure,heures;')
);
});
谢谢!