js倒計時搶購執行個體_javascript技巧

來源:互聯網
上載者:User

本文執行個體為大家分享了JavaScript實現限時搶購,供大家參考,具體代碼如下

運行效果圖:

具體代碼如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><title>限時搶購倒計時</title><style type="text/css"> body{ text-align: center; } #first{ color:#ff7300; font-size:30px; margin-left:10px; }</style><script type="text/javascript">window.onload=function(){setInterval(changTime, 500);function changTime(){document.getElementById("time").innerHTML=getTime();changeStyle();}function gR(){ return Math.floor(Math.random()*16);}function changeStyle(){var ele=document.getElementById("time");var size=Math.random()*40;ele.style.fontSize=((size+10)+"px");var mc=new Array("0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F");ele.style.color="#"+mc[gR()]+mc[gR()]+mc[gR()]+mc[gR()]+mc[gR()]+mc[gR()]; }function getTime(){ var now=new Date().getTime(); var end=new Date("2015/12/20").getTime(); var temp=end-now; if(temp<=0) {  document.getElementById("first").innerHTML="搶購活動已結束!!!!!";  return ""; }else { var temp2=new Date(); temp2.setTime(temp); var sec=Math.floor((temp)/1000%60); var min=Math.floor(temp/(60*1000)%60); var hou=Math.floor(temp/(60*60*1000)%24); var day=Math.floor(temp/(24*60*60*1000));  return day+"天 "+hou+"小時 "+min+"分鐘 "+sec+"秒"; }}};</script></head><body> <br/><br/><br/><br/><br/> <span id="first">距離限時搶購還有 </span> <span id="time"></span></body></html>

希望本文執行個體希望對大家學習javascript程式設計有所協助。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.