倒计时

作者: 枫尘逍遥 | 来源:发表于2018-06-12 15:30 被阅读0次

    (function(){

    var time = $('#countdown').data('time');

    if (time) {

    var curTime = (new Date()).getTime();

    var mss = time-curTime;

    if(mss){

    var intervalTime = 1000

                countDown()

    setInterval(function(){

    mss -= intervalTime

                    countDown()

    },intervalTime)

    }else{

    $('#countdown').html(0 + " 天 " + 0 + " 小时 " + 0 + " 分" + 0 + " 秒 ")

    }

    }

    function countDown(){

    var days = parseInt(mss / (1000 * 60 * 60 * 24));

    var hours = parseInt((mss % (1000 * 60 * 60 * 24))/ (1000 * 60 * 60));

    var minutes = parseInt((mss % (1000 * 60 * 60))/ (1000 * 60));

    var seconds = parseInt((mss % (1000 * 60))/ 1000);

    $('#countdown').html(days + " 天 " + hours + " 小时 " + minutes + " 分" + seconds + " 秒 ");

    if(days==0&&hours==0&&minutes==0&&seconds==0){

    $('#countdown').html(0 + " 天 " + 0 + " 小时 " + 0 + " 分" + 0 + " 秒 ")

    }

    }

    })()

    相关文章

      网友评论

          本文标题:倒计时

          本文链接:https://www.haomeiwen.com/subject/grxreftx.html