码迷,mamicode.com
首页 > 其他好文 > 详细

毫秒数变成时分秒倒计时

时间:2017-06-08 17:59:51      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:query   date   时间戳   location   ret   log   ace   ndt   dct   

js抽象代码:
;(function($){
/**时间间隔对象
 * @author Karajan
 * @param gap 间隔毫秒
 * @param {cT:当前时间(毫秒),eT:截止时间(毫秒),gap:间隔(毫秒),aEven:到点触发的事件function,iEven:初始化函数,初始化时被调用,lEven:倒计时结束触发方法}
 * 
 */
    function dateGap(gap){
        var di=[],dCt=[1000*60*60*24,1000*60*60,1000*60,1000,1];
        for(i=0;i<dCt.length;i++){
            di[i]=Math.floor(gap/dCt[i]);gap=gap%dCt[i];
        }
        this.format=function(fmt){
            var o = {"\\$d+":di[0],"\\$h+":di[1],"\\$m+":di[2],"\\$s+":di[3],"\\$S+":di[4]};
            for ( var k in o) {
                if (new RegExp("("+k+")").test(fmt)) {
                    fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1)?(o[k]):(("00" + o[k]).substr(("" + o[k]).length>2?2:("" + o[k]).length)));
                };
            }
            return fmt;
        }
        this.getD=function(){return di;}
    }
    $.gTimer=function(param){
        var opt={ct:null,et:null,gap:1000,aEven:null,iEven:null,lEven:null,Tindex:null};
        $.extend(opt,param);
        if(opt.ct==null||opt.et==null||opt.aEven==null)return;
        if(opt.iEven)opt.iEven.apply(opt);
        var t=setInterval(function(){
            $.extend(opt,{dt:new dateGap(opt.et-opt.ct)});
            if(opt.ct>=opt.et){opt.ct=opt.et;clearInterval(t);opt.dt=new dateGap(opt.et-opt.ct);if(opt.lEven)opt.lEven.apply(opt);};
            opt.aEven.apply(opt);
            opt.ct=opt.ct+opt.gap;
        },opt.gap);
        return t;
    };
})(jQuery);

 

 




页面数据显示的js操作:
 /**
        * @description 根据当前场次的时间戳计算倒计时
        * @method getTime
        * @since 2017-05-17
        * @author Karajan
        */
        getTime: function (){   
            var curT = new Number($("#timeCurrent").val() || ‘0‘);      
            var endT = new Number($("#timeEnding").val() || ‘0‘);
            var $time = $(".current .timeInfo");
            if(endT != ""){
                if(curT<endT){
                    $.gTimer({
                        ct: curT,
                        et: endT,
                        iEven: function() {},
                        aEven: function() {
                            var hh=this.dt.format("$hh");
                            var mm=this.dt.format("$mm");
                            var ss=this.dt.format("$s");
                           /* 倒计时 */
                            if(hh === "00" && mm === "00" && ss === "00") {
                                $time.html("已结束");
                                window.location.reload();
                            }else {
                                $time.html(hh + ‘:‘ + mm + ‘:‘ + ss);
                                $(".current .end").html("距离结束");
                            }
                        },
                        lEven: function() {}
                    });
                }else{
                }
            }
        },

 

毫秒数变成时分秒倒计时

标签:query   date   时间戳   location   ret   log   ace   ndt   dct   

原文地址:http://www.cnblogs.com/wangking/p/6963667.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!