-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
51 lines (44 loc) · 2.29 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Variables to keep track of the score and time left
var score = 0; // Starting score is 0
var timeLeft = 10; // Starting time is 10 seconds
var timerInterval; // This will hold the timer
var gameActive = true; // A flag to check if the game is still running
// Function to increase the score when the "Click Me!" button is clicked
function clickMe() {
if (gameActive) { // Only increase the score if the game is active
score = score + 1; // Add 1 to the score
document.getElementById("scoreDisplay").innerText = score; // Update the score on the screen
}
}
// Function to start the game
function startGame() {
score = 0; // Reset the score to 0
timeLeft = 10; // Reset the time to 10 seconds
gameActive = true; // Set the game as active
document.getElementById("scoreDisplay").innerText = score; // Show the reset score
document.getElementById("timeDisplay").innerText = timeLeft; // Show the reset time
document.getElementById("clickButton").disabled = false; // Enable the "Click Me!" button
document.getElementById("gameOverMessage").style.display = "none"; // Hide the "Game Over" message
// Start the countdown timer
timerInterval = setInterval(function() {
timeLeft = timeLeft - 1; // Decrease the time by 1
document.getElementById("timeDisplay").innerText = timeLeft; // Update the time on the screen
// If time runs out, stop the game
if (timeLeft === 0) {
clearInterval(timerInterval); // Stop the timer
gameActive = false; // Set the game as inactive
document.getElementById("clickButton").disabled = true; // Disable the "Click Me!" button
document.getElementById("gameOverMessage").style.display = "block"; // Show the "Game Over" message
}
}, 1000); // Run the code inside this function every 1 second (1000 milliseconds)
}
// Function to restart the game when the "Restart" button is clicked
function restartGame() {
clearInterval(timerInterval); // Stop the current timer
startGame(); // Start a new game
}
// Add event listeners to the buttons
document.getElementById("clickButton").addEventListener("click", clickMe); // Run clickMe when "Click Me!" is clicked
document.getElementById("restartButton").addEventListener("click", restartGame); // Run restartGame when "Restart" is clicked
// Start the game when the page loads
startGame();