溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

JS如何實(shí)現(xiàn)動(dòng)態(tài)倒計(jì)時(shí)功能

發(fā)布時(shí)間:2021-04-19 11:05:34 來(lái)源:億速云 閱讀:253 作者:小新 欄目:web開(kāi)發(fā)

這篇文章主要介紹JS如何實(shí)現(xiàn)動(dòng)態(tài)倒計(jì)時(shí)功能,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

寫(xiě)在前面:

實(shí)現(xiàn)倒計(jì)時(shí)功能首先是得到目標(biāo)時(shí)間,然后用當(dāng)前時(shí)間減去目標(biāo)時(shí)間,最后將時(shí)間差傳化為天數(shù)、時(shí)、分、秒。由于得到的時(shí)間不能直接運(yùn)算,可以采用object.getTime()方法轉(zhuǎn)化成相同類型進(jìn)行運(yùn)算。

相關(guān)說(shuō)明:

如果想要顯示界面好看些,可以添加一下樣式。

JS如何實(shí)現(xiàn)動(dòng)態(tài)倒計(jì)時(shí)功能

<script>
 function show(){
  //獲取目的日期
  var myyear=document.getElementById("year").value;
  var mymonth=document.getElementById("month").value-1;
  var myday=document.getElementById("day").value;
  var myhour=document.getElementById("hour").value;
  var myminute=document.getElementById("minute").value;
  var mysecond=document.getElementById("second").value;
  var time=Number(new Date(myyear,mymonth,myday,myhour,myminute,mysecond));
  // var time=new Date(myyear,mymonth,myday,myhour,myminute,mysecond).getTime();
  //獲取當(dāng)前時(shí)間
  var nowTime=Date.now();
  // var nowTime=new Date().getTime();
  //獲取時(shí)間差
  var timediff=Math.round((time-nowTime)/1000);
  //獲取還剩多少天
  var day=parseInt(timediff/3600/24);
  //獲取還剩多少小時(shí)
  var hour=parseInt(timediff/3600%24);
  //獲取還剩多少分鐘
  var minute=parseInt(timediff/60%60);
  //獲取還剩多少秒
  var second=timediff%60;
  //輸出還剩多少時(shí)間
  document.getElementById("1").innerHTML=day;
  document.getElementById("2").innerHTML=hour;
  document.getElementById("3").innerHTML=minute;
  document.getElementById("4").innerHTML=second;
  setTimeout(show,1000);
  if(timediff==0){return;}
  }
 </script>

JS如何實(shí)現(xiàn)動(dòng)態(tài)倒計(jì)時(shí)功能

<head>
 <meta charset="UTF-8">
 <title>Document</title>
 <style>
 input{width:50px;height: 20px;border:1px solid black;}
 .time1 span{display:inline-block;width:40px;height: 20px;}
 </style>
</head>
<body>
 <form>目的日期:
 <input type="text" id="year"><span>年</span>
 <input type="text" id="month"><span>月</span>
 <input type="text" id="day"><span>日</span>
 <input type="text" id="hour"><span>時(shí)</span>
 <input type="text" id="minute"><span>分</span>
 <input type="text" id="second"><span>秒</span>
 <input type="button" value="確定" οnclick="show()">
 </form>
 <div class="time1">還剩時(shí)間:
 <span id="1"></span>天 
 <span id="2"></span>時(shí)
 <span id="3"></span>分
 <span id="4"></span>秒
 </div>

寫(xiě)在最后:倒計(jì)時(shí)的難點(diǎn)主要是時(shí)間格式和數(shù)字格式的轉(zhuǎn)換,轉(zhuǎn)換時(shí)除了object.getTime()方法還有Number(object)方法,大家可以嘗試使用一下。

以上是“JS如何實(shí)現(xiàn)動(dòng)態(tài)倒計(jì)時(shí)功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

js
AI