倒数计时器,倒数刻度取决于工作人员

时间:2019-02-09 16:36:17

标签: javascript php jquery

我似乎无法在滴答声中创建倒数计时的减少,滴答声的大小是输入指定的秒数。

我创建了一个成功运行的倒计时,但无法用刻度线实现。

var x = setInterval(function() {
// var newDate = $("#timerDate option:selected").val();
var newDate = getUrlParameter('date');

if (newDate != undefined) {
  var countDownDate = new Date(getUrlParameter('date'));
  // Get todays date and time
  var now = new Date();
  // Find the distance between now an the count down date
  var distance = countDownDate - now;
  // alert(distance);
  // Time calculations for days, hours, minutes and seconds
  var days = Math.floor(distance / (1000 * 60 * 60 * 24)).toString();
  var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)).toString();
  var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60)).toString();
  var seconds = Math.floor((distance % (1000 * 60)) / 1000).toString();
}

预期结果:如果我选择3,倒数秒应减少3个滴答声

实际结果:尽管我选择了3,但倒数秒却每秒减少1个滴答声。

输入:

Screenshot

结果:

Screenshot

0 个答案:

没有答案