美文网首页
倒计时遍历

倒计时遍历

作者: 在下高姓 | 来源:发表于2020-04-15 17:51 被阅读0次
    //定时器操作方法
        times(e){
            let timestamp = Date.parse(new Date())/1000;//当前时间戳
            let date=Number(e)-timestamp;
            if(date>0){
                let day= Math.floor(date/(60*60*24));
                let hours= Math.floor(date/(60*60)%24);
                let minutes = Math.floor(date/60%60);
                let seconds = Math.floor(date%60);
                return day+'天'+hours+'小时'+minutes+'分钟'+seconds+'秒'
            }else{
                return '倒计时结束'
            }
                        
                        
                            
        }
    

    相关文章

      网友评论

          本文标题:倒计时遍历

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