-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
81 lines (66 loc) · 1.69 KB
/
index.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
const cards = document.querySelectorAll(".memory-card");
let hasFlippedCard = false;
let lockBoard = false;
let FirstCard, SecondCard;
function flipCard() {
sound();
if (lockBoard) return;
if(this === FirstCard) return;
this.classList.add('flip');
if (!hasFlippedCard) {
// first Click
hasFlippedCard = true;
FirstCard = this;
return;
}
// second click
SecondCard = this;
checkForMatch();
};
function checkForMatch() {
if (FirstCard.dataset.framework === SecondCard.dataset.framework) {
disableCards();
}
else {
unFlipCards();
}
};
function disableCards() {
FirstCard.removeEventListener("click", flipCard);
SecondCard.removeEventListener("click", flipCard);
resetBoard();
};
function unFlipCards() {
lockBoard = true ;
setTimeout(() => {
FirstCard.classList.remove("flip");
SecondCard.classList.remove("flip");
resetBoard();
}, 1000);
};
function resetBoard() {
[hasFlippedCard, lockBoard] = [false, false];
[firstCard, secondCard] = [null, null];
};
// immediately invoked function expression that means function would be called right after its definition
/* syntax -> ( function (){
piece of code
}
)();
*/
(function shuffle(){
cards.forEach( card => {
let randomPosition = Math.floor(Math.random()*12);
card.style.order = randomPosition ;
});
})();
cards.forEach(card => {
card.addEventListener("click", flipCard);
})
function sound(){
var audio = new Audio();
audio.src = "click.mp3";
audio.play();
};
// let msg = document.querySelectorAll("flip");
// console.log(msg.length);