Js倒计时代码,带闹铃功能

3 篇文章 0 订阅
  • 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="设置闹钟" οnclick="setclock()" />
<input type="button" value="重置" οnclick="reset()" /><br/>
<input type="button" value="开始" οnclick="begin()">  
<input type="button" value="停止" οnclick="stop()">
</body>
</html>

赶快试一下吧

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值