-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
35 lines (31 loc) · 1.66 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
const generateGame = () => {
const emojis = ["🍄", "🍄", "🎄", "🎄", "🌵", "🌵", "🍀", "🍀", "🍁", "🍁", "🌴", "🌴", "🌻", "🌻", "🌹", "🌹"];
var shuffle_emojis = emojis.sort(() => Math.random() > .5 ? 2 : -1);
for (var i = 0; i < emojis.length; i++) {
let box = document.createElement('div')
box.className = 'item';
box.innerHTML = shuffle_emojis[i]
box.onclick = function() {
this.classList.add('boxOpen')
setTimeout(function() {
if (document.querySelectorAll('.boxOpen').length > 1) {
if (document.querySelectorAll('.boxOpen')[0].innerHTML == document.querySelectorAll('.boxOpen')[1].innerHTML) {
document.querySelectorAll('.boxOpen')[0].classList.add('boxMatch')
document.querySelectorAll('.boxOpen')[1].classList.add('boxMatch')
document.querySelectorAll('.boxOpen')[1].classList.remove('boxOpen')
document.querySelectorAll('.boxOpen')[0].classList.remove('boxOpen')
if (document.querySelectorAll('.boxMatch').length == emojis.length) {
alert("Winner!")
window.location.reload()
}
} else {
document.querySelectorAll('.boxOpen')[1].classList.remove('boxOpen')
document.querySelectorAll('.boxOpen')[0].classList.remove('boxOpen')
}
}
},500)
}
document.querySelector('.game').appendChild(box);
}
}
generateGame();