作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在搜索 jquery 插件,其中:- 您可以设置倒计时时间- 设置倒计时到0时的函数;- 开始/停止/暂停/重置倒计时
有人可以帮助我吗?非常感谢。
最佳答案
您可以轻松地自己编写一个而不需要库:
<!-- HTML -->
<a href="#" class="start">start</a>
<a href="#" class="stop">stop</a>
<a href="#" class="pause">pause</a>
<a href="#" class="reset">reset</a>
<div class="time"></div>
-
//Javascript
var startValue = 120000; //Number of milliseconds
var time = new Date(startValue);
var interv;
function done(){
alert("Timer reached 00:00!");
}
$(function(){
displayTime();
$(".start").on("click", function(){
interv = setInterval(function(){
time = new Date(time - 1000);
if(time<=0){
done();
clearInterval(interv);
}
displayTime();
}, 1000);
});
$(".stop").on("click", function(){
clearInterval(interv);
time = new Date(startValue);
displayTime();
});
$(".pause").on("click", function(){
clearInterval(interv);
});
$(".reset").on("click", function(){
time = new Date(startValue);
displayTime();
});
});
function displayTime(){
$(".time").text(fillZeroes(time.getMinutes()) + ":" + fillZeroes(time.getSeconds()));
}
function fillZeroes(t){
t = t+"";
if(t.length==1)
return "0" + t;
else
return t;
}
关于jquery ...天文钟插件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13440691/
我是一名优秀的程序员,十分优秀!