倒计时脚本,不;t正确显示或倒计时

CountDown Script, Doesn't display or countdown correctly

本文关键字:倒计时 显示 脚本      更新时间:2023-09-26

所以我一直在努力调试pomodoro(番茄)时钟的脚本。我想要这个脚本做的是它将接收输入(在几分钟内)。现在,我的脚本正在倒数5秒,而不是1秒。此外,它也不会像我想要的那样显示分钟数。

我以一种合乎逻辑的方式编写了这个脚本,以登录到控制台并测试它。我在控制台中看到的是它每秒显示一次,但如果有意义的话,它每秒显示5秒。这是jsbin:https://jsbin.com/gigohajawo/3/edit?js骗局solehttps://jsbin.com/gigohajawo/3/edit?js,控制台

这是代码,任何帮助都将不胜感激!!!

//makes sure the page is loaded first
$(document).ready(function() {
    //global variables
    //grabs text of an id and converts it to an int
    var countMin = 5;
    var count1 = 60;

    //when button id "but" is clicked...
       //while page is up, it keeps track each second that has passed
       for(; countMin >=0;countMin--){
            var counter1 = setInterval(function(){
                //calls timer function to count down
                 count1 = Timer(count1,counter1,countMin);
            },1000);
          count1 =60;
        }

    //counts down
    function Timer(count,counter,minutes){
        count--;
        //once it hits 0 seconds, the interval will stop counting
        if(count <=0){
            clearInterval(counter); 
            return count;
        }
        //displays the countdown
        if(minutes < 10){
            if(count < 10){
                console.log("0:0" + count);
            } else {
                console.log("0:" + count);
            }
        }else if(minutes > 0 && minutes < 10){
            if(count < 10){
                console.log("0" + minutes +":0" + count);
            } else {
               console.log("0"+minutes+":" + count);
            }
        } else{
            if(count < 10){
                console.log(minutes+":0" + count);
            } else {
               console.log=minutes+":" + count;
            }
        }
        return count;
    }
});

这个JSBin似乎达到了您的目的。

代码:

//makes sure the page is loaded first
$(document).ready(function() {
    //global variables
    //grabs text of an id and converts it to an int
    var count1 = 120;
    // Call a function every 1000 milliseconds (1 second)
    var counter1 = setInterval(function() {
      count1 = Timer(count1, counter1);
    }, 1000);

    //counts down
    function Timer(count,counter){
        // Decrement the seconds counter
        count--;
        // Get the minutes and seconds in whole numbers
        var minutes = Math.floor(count / 60);
        var seconds = count % 60;
        // Once it hits 0 seconds, the interval will stop counting
        if(count <=0){
            clearInterval(counter);     
        }
        // Pads the seconds with a 0
        if (seconds < 10) {
          seconds = "0" + seconds;
        }
        // Pads the minutes with a 0
        if (minutes < 10) {
          minutes = "0" + minutes;
        }
        //displays the countdown
        console.log(minutes + ":" + seconds)
        return count;
    }
});

请注意:

  1. 由于已将count1定义为全局变量,因此不需要将其传递到Timer
  2. counter1也是如此

如果我重写它,我会做这样的事情:

//makes sure the page is loaded first
$(document).ready(function() {
    var timeInSeconds = 120;
    var timeCounter = setInterval(function() {
      timeInSeconds--;
      // If we hit 0 seconds clear the timer
      if (timeInSeconds <= 0) {
        clearInterval(timeCounter);
      }
      // Display the current time
      displayTime();
    }, 1000);

    function displayTime(){
        // Get the minutes and seconds in whole numbers
        var minutes = Math.floor(timeInSeconds / 60);
        var seconds = timeInSeconds % 60;
        // Pad with zeros using the Ternary operator
        seconds = (seconds < 10) ? "0" + seconds : seconds;
        minutes = (minutes < 10) ? "0" + minutes : minutes;
        // Display the countdown
        console.log(minutes + ":" + seconds)
    }
});