我正在使用FlipClock 1.1a,我想在倒计时结束时设置图像并隐藏计数器。目前,当时间到时,计数器进入 - 时间(-1 小时,-12 分钟)。我怎样才能做到这一点?该网站的回调很少,而且没有帮助。
问问题
4608 次
1 回答
9
他们在他们的代码库中提供了不同的示例,其中包括计数器停止事件。因此,您需要使用FlipClockstop
的回调来执行所需的操作,
var clock;
$(document).ready(function() {
clock = $('.clock').FlipClock(10, {
clockFace: 'MinuteCounter',
countdown: true,
callbacks: {
stop: function() {
// Do whatever you want to do here,
// that may include hiding the clock
// or displaying the image you mentioned
$('.message').html('The clock has stopped!');
}
}
});
});
附言
如果您已经下载了他们的整个源文件,您可以查看演示本身/FlipClock-master/examples/countdown-stop-callback.html
于 2015-01-30T11:25:45.233 回答