-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolorGame.js
86 lines (77 loc) · 2.42 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
var squares = document.querySelectorAll(".square")
var mode = squares.length
var colors = generateRandomColors(mode)
var pickedColor = pickColor()
var colorDisplay = document.getElementById("colorDisplay");
var message = document.querySelector("#message");
var h1 = document.querySelector("h1");
var resetButton = document.querySelector("#resetGame");
var modeButtons = document.querySelectorAll(".mode");
init();
function init(){
setupModeButton();
setupSquares();
}
function setupModeButton(){
modeButtons[1].classList.add("selected");
for(var i = 0; i<modeButtons.length; i++){
modeButtons[i].addEventListener("click", function(){
for(var i =0; i<modeButtons.length; i++)modeButtons[i].classList.remove("selected");
this.classList.add("selected");
this.textContent === "Easy" ? mode = 3: mode = 6;
reset();
});
}
}
colorDisplay.textContent = pickedColor;
resetButton.addEventListener("click", reset);
function changeColors(color){
for(var i=0; i<colors.length; i++){
squares[i].style.backgroundColor = color;
}
}
function pickColor(){
return colors[Math.floor(Math.random() * mode)]
}
function generateRandomColors(num){
var l = []
for(var i=0; i<num; i++)l.push(randomColor());
//RGB 3, get random color and push into array
return l
}
function randomColor(){
return "rgb(" + Math.floor(Math.random() * 256) + ", "
+ Math.floor(Math.random() * 256) + ", "
+ Math.floor(Math.random() * 256) + ")";
}
function reset(){
colors = generateRandomColors(mode);
pickedColor = pickColor();
colorDisplay.textContent = pickedColor;
for(var i=0; i<squares.length; i++){
squares[i].style.backgroundColor = colors[i];
squares[i].style.display = "block";
h1.style.backgroundColor = "steelblue";
message.textContent = "";
resetButton.textContent = "New Colors";
if(i>=mode && i<squares.length)squares[i].style.display = "none";
}
}
function setupSquares(){
for(var i=0; i<mode; i++){
squares[i].style.backgroundColor = colors[i];
squares[i].addEventListener("click", function(){
var clickedColor = this.style.backgroundColor;
if (clickedColor === pickedColor){
message.textContent = "Correct!";
resetButton.textContent = "Play Again"
changeColors(pickedColor);
h1.style.backgroundColor = clickedColor;
}
else {
this.style.backgroundColor = "#232323";
message.textContent = "Try Again"
}
});
}
}