欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

jquery 倒計時效果實(shí)現(xiàn)秒殺思路

 更新時間:2013年09月11日 15:49:27   作者:  
公司做了個秒殺頁面,需要做一個倒計時效果,感覺還特此收藏,喜歡的朋友也可以學(xué)習(xí)下
復(fù)制代碼 代碼如下:

<script type="text/javascript">
$(function(){
countDown("2015/9/8 11:11:59","#colockbox1");
});
function countDown(time,id){
var day_elem = $(id).find('.day');
var hour_elem = $(id).find('.hour');
var minute_elem = $(id).find('.minute');
var second_elem = $(id).find('.second');

//if(typeof end_time == "string")
var end_time = new Date(time).getTime(),//月份是實(shí)際月份-1
sys_second = (end_time-new Date().getTime())/1000;
var timer = setInterval(function(){
if (sys_second > 1) {
sys_second -= 1;
var day = Math.floor((sys_second / 3600) / 24);
var hour = Math.floor((sys_second / 3600) % 24);
var minute = Math.floor((sys_second / 60) % 60);
var second = Math.floor(sys_second % 60);
day_elem && $(day_elem).text(day);//計算天
$(hour_elem).text(hour<10?"0"+hour:hour);//計算小時
$(minute_elem).text(minute<10?"0"+minute:minute);//計算分鐘
$(second_elem).text(second<10?"0"+second:second);//計算秒殺
} else {
clearInterval(timer);
}
}, 1000);
}
</script>

html:
復(fù)制代碼 代碼如下:

<div class="colockbox" id="colockbox1">
<span class="day">00</span>
<span class="hour">00</span>
<span class="minute">00</span>
<span class="second">00</span>
</div>

公司做了個秒殺頁面,需要做一個倒計時效果,特此收藏

代碼演示下載:http://www.dbjr.com.cn/jiaoben/103648.html

相關(guān)文章

最新評論