js实现时间倒计时

网站中常用的的活动时间倒计时: 利用余数计算时分秒
js实现时间倒计时_第1张图片
html:

css:

.time {
  display: flex;
  align-items: center;
}

.time div {
  width: 50px;
  height: 50px;
  background: -webkit-gradient(linear, left top, right top, from(red), to(orange));
  background: linear-gradient(to right bottom, red, orange);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  color: #fff;
  border-radius: 10px;
}

js:

var s = 86405 // 总秒数
var m = 60 // 分秒数
var h = 60 * 60 // 时秒数
var d = 60 * 60 * 24 // 天秒数
setInterval(function () {
  s--
  var ld = parseInt(s / d) // 总天数
  var lh = parseInt(s % d / h) // 不足一天的小时数
  lh < 10 ? lh = '0' + lh : ''
  var lm = parseInt(s % h / m) // 不足一小时的分钟数
  lm < 10 ? lm = '0' + lm : ''
  var ls = parseInt(s % m) // 不足一分的秒数
  ls < 10 ? ls = '0' + ls : ''
  document.getElementById('day').innerHTML = ld + '天'
  document.getElementById('hour').innerHTML = lh + '时'
  document.getElementById('minute').innerHTML = lm + '分'
  document.getElementById('second').innerHTML = ls + '秒'
}, 1000)

你可能感兴趣的:(Javascript)