-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
44 lines (39 loc) · 1.21 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
let score = 0;
let timeLeft = 10;
const box = document.getElementById('box');
const timeLeftSpan = document.getElementById('time-left');
const scoreSpan = document.getElementById('score');
function startGame() {
box.style.display = 'block';
moveBox();
const gameInterval = setInterval(() => {
if (timeLeft > 0) {
timeLeft--;
timeLeftSpan.textContent = timeLeft;
} else {
clearInterval(gameInterval);
endGame();
}
}, 1000);
}
function moveBox() {
const gameArea = document.getElementById('game-area');
const maxWidth = gameArea.clientWidth - box.clientWidth;
const maxHeight = gameArea.clientHeight - box.clientHeight;
const randomX = Math.floor(Math.random() * maxWidth);
const randomY = Math.floor(Math.random() * maxHeight);
box.style.left = `${randomX}px`;
box.style.top = `${randomY}px`;
}
box.addEventListener('click', () => {
score++;
scoreSpan.textContent = score;
moveBox();
});
function endGame() {
box.style.display = 'none';
alert(`Game Over! Your score is ${score}.`);
}
document.addEventListener('DOMContentLoaded', () => {
startGame();
});