Js倒计时代码,带闹铃功能,自定义闹钟倒计时功能,点击开始按钮,即可开始倒数,代码不是太复杂,新手应该能看懂,代码分享给大家。
效果图:
源码:
<html>
<head>
<title>Js倒计时,闹铃功能</title>
<script language="javascript">
function $(id){
return document.getElementById(id);
}
function down(){
$("second").value-=1;
if($("second").value==0&&$("minutes").value==0&&$("hours").value==0)
{
window.alert("干正事了!!!");
clearInterval(timeout);
}
if($("second").value==-1)
{
$("second").value=59;
$("minutes").value-=1;
}
if($("minutes").value==-1)
{
$("minutes").value=59;
$("hours").value-=1;
}
}
var timeout;
function begin(){
timeout=setInterval("down()",1000);
}
function stop(){
clearInterval(timeout);
}
var dt=new Date();
function setclock()
{
var hours=$("clock_hours").value-dt.getHours();
var minutes=$("clock_minutes").value-dt.getMinutes();
if(minutes<0)
{
if(hours<0)
{
$("minutes").value=60-Math.abs(minutes);
$("hours").value=24-Math.abs(hours);
}
else if(hours==0)
{
$("minutes").value=60-Math.abs(minutes);
$("hours").value=Math.abs(hours);
}
else
{
$("minutes").value=60-Math.abs(minutes);
$("hours").value=Math.abs(hours)-1;
}
}
else if(minutes==0)
{
if(hours<0)
{
$("minutes").value=Math.abs(minutes);
$("hours").value=24-Math.abs(hours);
}
else if(hours==0)
{
$("minutes").value=Math.abs(minutes);
$("hours").value=Math.abs(hours)+24;
}
else
{
$("minutes").value=Math.abs(minutes);
$("hours").value=Math.abs(hours);
}
}
else
{
if(hours<0)
{
$("minutes").value=60-Math.abs(minutes);
$("hours").value=24-Math.abs(hours);
}
else if(hours==0)
{
$("minutes").value=Math.abs(minutes);
$("hours").value=Math.abs(hours);
}
else
{
$("minutes").value=Math.abs(minutes);
$("hours").value=Math.abs(hours);
}
}
}
function reset()
{
var time=document.getElementsByName("time");
for(i=0;i<time.length;i++)
{
time[i].value=0;
}
}
</script>
</head>
<body>
距闹铃响起的时间还有:<input type="text" id="hours" style="width:20px" value="0" name="time" />
:<input type="text" id="minutes" value="0" style="width:20px" name="time"/>:
<input type="text" id="second" value="0" style="width:20px" name="time"/><br/>
<input type="text" id="clock_hours" value="0" style="width:20px" name="time"/>时:
<input type="text" id="clock_minutes" value="0" style="width:20px" name="time"/>分<br/>
<input type="button" value="设置闹钟" onclick="setclock()" />
<input type="button" value="重置" onclick="reset()" /><br/>
<input type="button" value="开始" onclick="begin()">
<input type="button" value="停止" onclick="stop()">
</body>
</html>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
白云城资源网 Copyright www.dyhadc.com
暂无“js带闹铃功能的倒计时代码”评论...
更新日志
2025年10月27日
2025年10月27日
- 小骆驼-《草原狼2(蓝光CD)》[原抓WAV+CUE]
- 群星《欢迎来到我身边 电影原声专辑》[320K/MP3][105.02MB]
- 群星《欢迎来到我身边 电影原声专辑》[FLAC/分轨][480.9MB]
- 雷婷《梦里蓝天HQⅡ》 2023头版限量编号低速原抓[WAV+CUE][463M]
- 群星《2024好听新歌42》AI调整音效【WAV分轨】
- 王思雨-《思念陪着鸿雁飞》WAV
- 王思雨《喜马拉雅HQ》头版限量编号[WAV+CUE]
- 李健《无时无刻》[WAV+CUE][590M]
- 陈奕迅《酝酿》[WAV分轨][502M]
- 卓依婷《化蝶》2CD[WAV+CUE][1.1G]
- 群星《吉他王(黑胶CD)》[WAV+CUE]
- 齐秦《穿乐(穿越)》[WAV+CUE]
- 发烧珍品《数位CD音响测试-动向效果(九)》【WAV+CUE】
- 邝美云《邝美云精装歌集》[DSF][1.6G]
- 吕方《爱一回伤一回》[WAV+CUE][454M]
