-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
183 lines (165 loc) · 4.71 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
const cardArray = [
{
name: 'powells',
img: 'images/S+O.jpg',
},
{
name: 'kavanaghs',
img: 'images/B+A.jpg',
},
{
name: 'hotdog',
img: 'images/hotdog.png',
},
{
name: 'ice-cream',
img: 'images/ice-cream.png',
},
{
name: 'milkshake',
img: 'images/milkshake.png',
},
{
name: 'pizza',
img: 'images/pizza.png',
},
{
name: 'powells',
img: 'images/S+O.jpg',
},
{
name: 'kavanaghs',
img: 'images/B+A.jpg',
},
{
name: 'hotdog',
img: 'images/hotdog.png',
},
{
name: 'ice-cream',
img: 'images/ice-cream.png',
},
{
name: 'milkshake',
img: 'images/milkshake.png',
},
{
name: 'pizza',
img: 'images/pizza.png',
},
{
name: 'Ben',
img: 'images/Ben.jpg',
},
{
name: 'Ben',
img: 'images/Ben.jpg',
},
{
name: 'Orla',
img: 'images/Orla.jpg',
},
{
name: 'Orla',
img: 'images/Orla.jpg',
}
]
cardArray.sort(() => 0.5 - Math.random());
const gridDisplay = document.querySelector('#grid');
const resultDisplay = document.querySelector('#result');
const button = document.getElementById('button-family');
let cardsChosen = [];
let cardsChosenIds = [];
const cardsWon = [];
function startGame() {
createBoard();
toggleScreen("startScreen", false);
toggleScreen("result", true);
}
function toggleScreen(id, toggle) {
let element = document.getElementById(id);
let display = ( toggle ) ? "block" : "none";
element.style.display = display;
}
function createBoard() {
for (let i = 0; i < cardArray.length; i++) {
const card = document.createElement('img')
card.setAttribute('src', 'images/blank.png')
card.setAttribute('data-id', i)
card.addEventListener('click', flipCard)
gridDisplay.appendChild(card)
}
}
function checkMatch() {
const cards = document.querySelectorAll('#grid img')
const optionOneId = cardsChosenIds[0]
const optionTwoId = cardsChosenIds[1]
// console.log('check for a match!')
if (optionOneId === optionTwoId) {
cards[optionOneId].setAttribute('src', 'images/blank.png')
cards[optionTwoId].setAttribute('src', 'images/blank.png')
alert('You have clicked the same image!')
}
else if (cardsChosen[0] === cardsChosen[1]) {
resultDisplay.textContent = 'You found a match!'
// alert('You found a match!')
//Commented out the function that will make the card disappear after being matched
// cards[optionOneId].setAttribute('src', 'images/navy.png')
// cards[optionTwoId].setAttribute('src', 'images/navy.png')
cards[optionOneId].removeEventListener('click', flipCard)
cards[optionTwoId].removeEventListener('click', flipCard)
cardsWon.push(cardsChosen)
} else {
resultDisplay.textContent = 'Sorry try again!'
cards[optionOneId].setAttribute('src', 'images/blank.png')
cards[optionTwoId].setAttribute('src', 'images/blank.png')
// alert('Sorry try again!')
}
cardsChosen = []
cardsChosenIds = []
//Score display
if (cardsWon.length === (cardArray.length / 2)) {
resultDisplay.innerHTML = 'Congratulations you found them all!'
stop()
} else {
//Display score after a delay (so promts can be shown)
setTimeout(() => {
resultDisplay.textContent = 'Score: ' + cardsWon.length
}, 750)
}
}
function flipCard() {
const cardId = this.getAttribute('data-id');
cardsChosen.push(cardArray[cardId].name);
cardsChosenIds.push(cardId);
this.classList.add('flip', 'flipped'); //Add flip class for animation
this.removeEventListener('click', flipCard);
setTimeout(() => {
this.setAttribute('src', cardArray[cardId].img);
//Add the image to the fliped card with delay
//Reset unmatched cards after timeout
if (cardsChosen.length === 2) {
const cards = document.querySelectorAll('#grid img');
setTimeout(() => {
checkMatch();
cards.forEach((card) => card.classList.remove('flip'));
cards.forEach((card) => card.addEventListener('click', flipCard));
}, 750);
}
}, 500);
}
function stop() {
console.log('stop');
toggleScreen("result", false);
hideBoard();
toggleScreen("endScreen", true);
}
function hideBoard() {
const cards = document.querySelectorAll('#grid img');
cards.forEach((card) => {
card.style.display = 'none';
});
}
function reloadWindow() {
window.location.reload()
}