-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathscript.js
More file actions
81 lines (70 loc) · 2.21 KB
/
script.js
File metadata and controls
81 lines (70 loc) · 2.21 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
const screens = document.querySelectorAll('.screen');
const choiceButton = document.querySelectorAll('.choiceButton');
const startBtn = document.getElementById('start');
const gameContainer = document.getElementById(`game-container`);
const time = document.getElementById(`time`);
const score = document.getElementById(`score`);
const message = document.getElementById(`quit`);
let seconds = 0,
points = 0,
selectedInsects = {};
startBtn.addEventListener('click', () => screens[0].classList.add(`up`));
choiceButton.forEach(btn => {
btn.addEventListener('click', () => {
const img = btn.querySelector(`img`);
const src = img.getAttribute(`src`);
const alt = img.getAttribute(`alt`);
selectedInsects = {
src,
alt
};
screens[1].classList.add(`up`);
setTimeout(createInsect,1000);
startGame();
})
})
function startGame() {
setInterval(increaseTime,1000);
}
function increaseTime() {
let m = Math.floor(seconds / 60);
let s = seconds % 60;
m = m < 10 ? `0${m}` : m;
s = s < 10 ? `0${s}` : s;
time.innerHTML = `Time: ${m}:${s}`;
seconds++;
}
function createInsect() {
const insect = document.createElement(`div`);
insect.classList.add(`insect`);
const {x,y} = getRandomLocation();
insect.style.top = `${y}px`;
insect.style.left = `${x}px`;
insect.innerHTML = `<img src="${selectedInsects.src}" alt="${selectedInsects.alt}" style="transform: rotate(${Math.random() * 360}deg)" />`;
insect.addEventListener('click', catchInsect);
gameContainer.appendChild(insect);
}
function getRandomLocation() {
const width = window.innerWidth;
const height = window.innerHeight;
const x = Math.random() * (width - 200) + 100;
const y = Math.random() * (height - 200) + 100;
return { x, y };
}
function catchInsect() {
increaseScore();
this.classList.add('caught');
setTimeout(() => this.remove(), 2000);
addInsects();
}
function addInsects() {
setTimeout(createInsect, 1000);
setTimeout(createInsect, 1500);
}
function increaseScore() {
points++
if(points > 19) {
message.classList.add('visible')
}
score.innerHTML = `Score: ${points}`
}