我在我的网站上使用了一个运行良好的插件但是如何在倒计时结束时调出一个div?我还是新手使用插件。
我在JS上使用此代码
$(function() {
$('#countdown').countdown({
date: "June 2, 2016 20:34:26"
});
});
这是我的HTML
<div id="countdown">would be display here</div>
我想在倒计时结束时调用此div
<div id="testing">test</div>
我的另一个问题是如何使用keith-wood倒计时插件再次倒计时。例如,当倒计时结束时,自动+ 1天继续此过程?我希望保留<div id="testing">test</div>
。
答案 0 :(得分:1)
使用onExpiry
plugin
回调
$('#countdown').countdown({
until: "June 2, 2016 20:34:26",
onExpiry: liftOff, //call this function and show the div
onTick: watchCountdown
});
function liftOff(){
$("#testing").show();
}
DEMO
until
选项而不是date
。