<header>
<h2 class="title">clearTimeout() метод</h2>
<p class="description">Цей приклад демонструє використання clearTimeout() для скасування таймера.</p>
</header>
<main>
<div class="result">
<p>Натисніть кнопку "Запустити таймер", щоб почати таймер. Ви можете скасувати його за допомогою кнопки "Скасувати таймер".</p>
<button id="startButton">Запустити таймер</button>
<button id="cancelButton">Скасувати таймер</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-right: 10px;
}
let timerId;
// Функція для виклику після закінчення таймера
function timerCallback() {
alert("Час вийшов! Таймер завершено.");
}
const startButton = document.getElementById("startButton");
const cancelButton = document.getElementById("cancelButton");
startButton.addEventListener("click", () => {
// Запускаємо таймер на 5 секунд
timerId = setTimeout(timerCallback, 5000);
alert("Таймер запущено на 5 секунд.");
});
cancelButton.addEventListener("click", () => {
// Скасовуємо таймер, якщо він активний
if (timerId) {
clearTimeout(timerId);
alert("Таймер скасовано.");
}
});
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.