forked from kevinchen9315/ColorGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathColorGame.js
94 lines (81 loc) · 2.72 KB
/
ColorGame.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
const generateColors = (arrLength) => {
const colors = []
for(let i = 0; i<arrLength; i++){
const red = Math.floor(Math.random()*256)
const green = Math.floor(Math.random()*256)
const blue = Math.floor(Math.random()*256)
colors.push('rgb(' + red + ', ' + green + ', ' + blue + ')')
}
return colors
}
const pickColor = colors => {
const random = Math.floor(Math.random() * colors.length)
return colors[random]
}
const changeColors = (color, squares) => {
for(let i = 0; i<squares.length; i++){
squares[i].style.backgroundColor = color
}
}
const reset = (squares, messageDisplay, colorDisplay, newbutton, tiles) => {
document.getElementsByTagName('h1')[0].style.backgroundColor = 'steelblue'
messageDisplay.textContent = ''
newbutton.textContent = 'New Colors'
colors = generateColors(tiles)
console.log(colors)
pickedColor = pickColor(colors)
colorDisplay.textContent = pickedColor;
colorDisplay.style.color = 'white'
for(let i=0; i<squares.length; i++){
const square = squares[i]
square.style.backgroundColor = '#232323'
square.style.backgroundColor = colors[i]
}
return pickedColor
}
const newGame = () => {
const squares = document.querySelectorAll('.square')
const messageDisplay = document.querySelector('#message')
const colorDisplay = document.getElementById('ColorDisplay')
let pickedColor
let tiles = 6
const easybtn = document.querySelector('#easybtn')
const hardbtn = document.querySelector('#hardbtn')
easybtn.addEventListener('click', () => {
tiles = 3
hardbtn.classList.remove('selected')
easybtn.classList.add('selected')
pickedColor = reset(squares, messageDisplay, colorDisplay, newbutton, tiles)
})
hardbtn.addEventListener('click', () => {
tiles = 6
hardbtn.classList.add('selected')
easybtn.classList.remove('selected')
pickedColor = reset(squares, messageDisplay, colorDisplay, newbutton, tiles)
})
const newbutton = document.getElementById('newbtn')
newbutton.addEventListener('click', () => {
pickedColor = reset(squares, messageDisplay, colorDisplay, newbutton, tiles)
})
pickedColor = reset(squares, messageDisplay, colorDisplay, newbutton, tiles)
for(let i=0; i<squares.length; i++){
const square = squares[i]
square.style.backgroundColor = colors[i]
square.addEventListener('click', () => {
const clickedColor = square.style.backgroundColor
console.log(clickedColor)
console.log(pickedColor)
if(clickedColor === pickedColor){
changeColors(clickedColor, squares)
messageDisplay.textContent = 'Correct!'
document.getElementsByTagName('h1')[0].style.backgroundColor = clickedColor
newbutton.textContent = 'Play Again?'
}
else {
square.style.backgroundColor = "#232323"
messageDisplay.textContent = 'Try Again'
}
})
}
}
newGame()