У меня есть кнопка, запускающая таймер обратного отсчета при нажатии. Я хочу приостановить этот таймер, когда я нажимаю на окно таймера, и не останавливаюсь при повторном нажатии. Я смог остановить обратный отсчет при нажатии, но я не могу понять, как его запустить.Пауза setInterval при щелчке с таймером обратного отсчета
jQuery(function ($) {
var countdown;
function startTimer(duration, display) {
var timer = duration, minutes, seconds;
countdown = setInterval(function() {
minutes = parseInt(timer/60, 10);
seconds = parseInt(timer % 60, 10);
minutes = minutes < 10 ? "0" + minutes : minutes;
seconds = seconds < 10 ? "0" + seconds : seconds;
display.text(minutes + ":" + seconds);
if (--timer < 0) {
clearInterval(countdown);
}
}, 1000);
}
$('.start-timer').on('click',function() {
$('body').append("<div id='countdown-timer'></div>");
var fiveMinutes = 60 * 5;
var display = $('#countdown-timer');
startTimer(fiveMinutes, display);
});
// Want this function to be toggling the timer countdown
$('body').on('click', '#countdown-timer',function(){
clearInterval(countdown);
countdown = null;
});
});
#countdown-timer {
position: absolute;
top: 20%;
cursor: pointer;
background: rgba(0,0,0,0.4);
color: white;
border-width: 1px;
border-color: #fed136;
font-size: 50px;
border-radius: 4px;
}
<body>
<div id="countdown-timer"></div>
<button class="start-timer">Start timer</button>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
</body>
Вот скрипка: https://jsfiddle.net/wLnmk5dx/3/