-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
139 lines (111 loc) · 3.16 KB
/
app.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
//---------------------------Cards Coontainer
const cardArray = [
//---------------------------------Cards
{
name: 'fries',
img: 'img/fries.png',
},
{
name: 'cheeseburger',
img: 'img/cheeseburger.png',
},
{
name: 'hotdog',
img: 'img/hotdog.png',
},
{
name: 'iceCream',
img: 'img/ice-cream.png',
},
{
name: 'milkshake',
img: 'img/milkshake.png',
},
{
name: 'pizza',
img: 'img/pizza.png',
},
{
name: 'fries',
img: 'img/fries.png',
},
{
name: 'cheeseburger',
img: 'img/cheeseburger.png',
},
{
name: 'hotdog',
img: 'img/hotdog.png',
},
{
name: 'iceCream',
img: 'img/ice-cream.png',
},
{
name: 'milkshake',
img: 'img/milkshake.png',
},
{
name: 'pizza',
img: 'img/pizza.png',
}
];
//----------------------------Randomize Card Order
cardArray.sort(() => 0.5 - Math.random());
//------------------------------------------Layout
const grid = document.querySelector('.grid');
let scoreDisplay = document.querySelector('#score');
let cardChosen = [];
let cardChosenId = [];
const cardWon = [];
function createBoard () {
for (let i = 0; i < cardArray.length; i++) {
const card = document.createElement('img');
card.setAttribute('src', 'img/blank.png');
card.setAttribute('data-id', i);
card.addEventListener('click', flipCard);
grid.appendChild(card);
}
}
createBoard();
//---------------------------------------Card Event
function checkMatch () {
const cards = document.querySelectorAll('img');
const optionOneId = cardChosenId[0];
const optionTwoId = cardChosenId[1];
//-----------------------------------Check Match
if (optionOneId == optionTwoId) {
cards[optionOneId].setAttribute('src', 'img/blank.png');
cards[optionTwoId].setAttribute('src', 'img/blank.png');
alert('You have clicked the same image !')
}
if (cardChosen[0] == cardChosen[1]) {
cards[optionOneId].setAttribute('src', 'img/white.png');
cards[optionTwoId].setAttribute('src', 'img/white.png');
cards[optionOneId].removeEventListener('click', flipCard);
cards[optionTwoId].removeEventListener('click', flipCard);
cardWon.push(cardChosen);
} else {
cards[optionOneId].setAttribute('src', 'img/blank.png');
cards[optionTwoId].setAttribute('src', 'img/blank.png');
}
//-----------------------------------Turn End
scoreDisplay.textContent = cardWon.length;
cardChosen = [];
cardChosenId = [];
//-----------------------------------Win
if(cardWon.length == (cardArray.length/2)) {
scoreDisplay.textContent = 'You win !';
}
}
function flipCard () {
let cardId = this.getAttribute('data-id');
cardChosen.push(cardArray[cardId].name);
cardChosenId.push(cardId);
console.log(cardChosen);
console.log(cardChosenId);
this.setAttribute('src', cardArray[cardId].img);
if (cardChosen.length === 2) {
setTimeout( checkMatch, 500);
}
}