时间倒计时插件

时间倒计时插件

效果:


源码:


//时间倒计时插件
$.fn.ptTime = function() {
    return this.each(function(e) {
    	var that=$(this);
    	var end_time=$(this).attr("data-time");//时间格式:2017.9.07 13:30
    	var end_act_time=$(this).attr("data-acTime");//时间格式:2017.9.07 13:30
    	var timestamp2 = Date.parse(new Date(end_time)); //结束时间
            end_time = timestamp2 / 1000;
        var timestamp1=Date.parse(new Date(end_act_time));  //活动结束时间
            end_act_time= timestamp1 / 1000;
        var  timestamp3 =  Math.round(new Date().getTime()/1000);  //现在的时间
        if(timestamp3


你可能感兴趣的:(插件)