<header>
<h2 class="title">Метод clearInterval()</h2>
<p class="description">Використання clearInterval() для призупинення таймера.</p>
</header>
<main>
<div class="result">
<p>Час: <span id="timer">0</span> секунд</p>
<button id="startButton">Старт</button>
<button id="stopButton">Стоп</button>
</div>
</main>
body {
font-size: 16px;
line-height: 1.5;
font-family: Arial, sans-serif;
}
header {
background-color: #f1f1f1;
margin-bottom: 25px;
padding: 15px;
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
}
header h2.title {
padding-bottom: 15px;
border-bottom: 1px solid #999;
}
header p.description {
font-style: italic;
color: #222;
}
.result {
background-color: #f8f8f8;
padding: 15px;
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
}
button {
margin: 5px;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
let timerInterval;
let seconds = 0;
const timerElement = document.getElementById("timer");
const startButton = document.getElementById("startButton");
const stopButton = document.getElementById("stopButton");
function updateTimer() {
seconds++;
timerElement.textContent = seconds;
}
startButton.addEventListener("click", () => {
timerInterval = setInterval(updateTimer, 1000);
startButton.disabled = true;
stopButton.disabled = false;
});
stopButton.addEventListener("click", () => {
clearInterval(timerInterval);
startButton.disabled = false;
stopButton.disabled = true;
});
// Деактивуємо кнопку "Стоп" при завантаженні сторінки
stopButton.disabled = true;
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.