本文實例為大家分享了jquery做一個小的倒計時效果的代碼,供大家參考,具體內容如下
html:
<div id="shop_rec"> <ul class="cf"> <li> <img src="image/goods.jpg" alt="小米 Note 頂配版" /> <div> <h5>小米 Note 頂配版</h5> <p>全網通 香檳金 移動聯通<br />雙4G手機 雙卡雙待</p> <em>¥2998<i>起</i></em> <span class="time" data-starttime="1445982375" data-endtime="1446350400"></span> </div> </li> <li> <img src="image/goods.jpg" alt="小米 Note 頂配版" /> <div> <h5>小米 Note 頂配版</h5> <p>全網通 香檳金 移動聯通<br />雙4G手機 雙卡雙待</p> <em>¥2998<i>起</i></em> <span class="time" data-starttime="1445912375" data-endtime="1436350400"></span> </div> </li> </ul></div>
jquery:
$(function(){ var abj = $("#shop_rec"),  timeObj = abj.find('.time'); var starttime = timeObj.data('starttime'); // 定時器函數 function actionDo(){  return setInterval(function(){   timeObj.each(function(index, el) {    var t = $(this),     surplusTime = t.data('endtime') -starttime;    if (surplusTime <= 0) {     t.html("活動已經開始");    } else{     var year = surplusTime/(24*60*60*365),      showYear = parseInt(year),      month = (year-showYear)*12,      showMonth = parseInt(month),      day = (month-showMonth)*30,      showDay = parseInt(day),      hour = (day-showDay)*24,      showHour = parseInt(hour),      minute = (hour-showHour)*60,      showMinute = parseInt(minute),      seconds = (minute-showMinute)*60,      showSeconds = parseInt(seconds);     t.html("");     if (showYear>0) {      t.append("<span>"+showYear+"年</span>")     };     if (showMonth>0) {      t.append("<span>"+showMonth+"月</span>")     };     if (showDay>0) {      t.append("<span>"+showDay+"天</span>")     };     if (showHour>=0) {      t.append("<span>"+showHour+"小時</span>")     };     if (showMinute>=0) {      t.append("<span>"+showMinute+"分鐘</span>")     };     if (showSeconds>=0) {      t.append("<span>"+showSeconds+"秒</span>")     };    };   });   starttime++;  },1000); // 設定執行或延時時間 }; // 執行它 actionDo();});本文由FungLeo原創
本文地址:http://blog.csdn.net/fungleo/article/details/49446887
總結
不是特別優秀,但是小的應用完全沒有問題。
精彩專題分享:js實現倒計時功能匯總
以上就是本文的全部內容,希望對大家的學習有所幫助。
新聞熱點
疑難解答