0

タイマー付きの適性検査を作成しています。カウントダウン終了時にタイムアウトのdivを表示したい。カウントダウン終了時に **Lean Modal Popup ** ボックスを表示することは可能ですか。助けてください!!!。コードはこちら

Javascript

<script language="JavaScript" type="text/javascript">

function CountDownTimer(duration, granularity) {
  this.duration = duration;
  this.granularity = granularity || 1000;
  this.tickFtns = [];
  this.running = false;
}

CountDownTimer.prototype.start = function() {
  if (this.running) {
    return;
  }
  this.running = true;
  var start = Date.now(),
      that = this,
      diff, obj;

  (function timer() {
    diff = that.duration - (((Date.now() - start) / 1000) | 0);

    if (diff > 0) {
      setTimeout(timer, that.granularity);
    } else {
      diff = 0;
      that.running = false;
    }

    obj = CountDownTimer.parse(diff);
    that.tickFtns.forEach(function(ftn) {
      ftn.call(this, obj.minutes, obj.seconds);
    }, that);
  }());
};

CountDownTimer.prototype.onTick = function(ftn) {
  if (typeof ftn === 'function') {
    this.tickFtns.push(ftn);
  }
  return this;
};

CountDownTimer.prototype.expired = function() {
  return !this.running;
};

CountDownTimer.parse = function(seconds) {
  return {
    'minutes': (seconds / 60) | 0,
    'seconds': (seconds % 60) | 0
  };
};


window.onload = function () {
    var display = document.querySelector('#time'),
        timer = new CountDownTimer(5),
        timeObj = CountDownTimer.parse(5);

    format(timeObj.minutes, timeObj.seconds);

    timer.onTick(format);

    document.querySelector('button').addEventListener('click', function () {
        timer.start();
    });

    function format(minutes, seconds) {
        minutes = minutes < 10 ? "0" + minutes : minutes;
        seconds = seconds < 10 ? "0" + seconds : seconds;
        display.textContent = minutes + ':' + seconds;
}

if(display.textContent == 0){


            document.querySelector("#div1").style.display="block";





}



};



</script>

HTML

<button>Start Count Down</button>
    <div>Registration closes in <span id="time"></span> minutes!</div>

表示するdiv

<div id="div1" style="display:none;" ><p>Hello</p></div>
4

1 に答える 1

0

さて、あなたはこのJavaScriptコードを持っています:

    window.onload = function () {
    var display = document.querySelector('#time'),
        timer = new CountDownTimer(5),
        timeObj = CountDownTimer.parse(5);

    format(timeObj.minutes, timeObj.seconds);

    timer.onTick(format);

    document.querySelector('button').addEventListener('click', function () {
        timer.start();
    });

    function format(minutes, seconds) {
        minutes = minutes < 10 ? "0" + minutes : minutes;
        seconds = seconds < 10 ? "0" + seconds : seconds;
        display.textContent = minutes + ':' + seconds;
}

if(display.textContent == 0){


            document.querySelector("#div1").style.display="block";





}

一番下に「if」文があります。

次のように、その if ステートメントを「format」関数に移動するだけです。

    window.onload = function () {
        var display = document.querySelector('#time'),
            timer = new CountDownTimer(5),
            timeObj = CountDownTimer.parse(5);

        format(timeObj.minutes, timeObj.seconds);

        timer.onTick(format);

        document.querySelector('button').addEventListener('click', function () {
            timer.start();
        });



 function format(minutes, seconds) {
        minutes = minutes < 10 ? "0" + minutes : minutes;
        seconds = seconds < 10 ? "0" + seconds : seconds;
        display.textContent = minutes + ':' + seconds;

        console.log(display.textContent);

        if(display.textContent == "00:00") {
            document.querySelector("#div1").style.display="block";
        }
    }
};

あなたのコードは、現在のように、すべてのティックでチェックを実行していません。

また、「0」に対してチェックしていません。値は「00:00」にする必要があります

もちろん、チェックを移動して div を tick イベントに表示することもできますが、それは完全にあなた次第です。

于 2016-07-13T12:04:27.517 に答える