-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
62 lines (41 loc) · 909 Bytes
/
script.js
File metadata and controls
62 lines (41 loc) · 909 Bytes
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
clickCount = 0;
firstColor = "";
secondColor = "";
$(document).ready(function() {
$(".picture-box").click(function(){
turnSquare( $(this) );
});
});
function turnSquare(squareObject)
{
clickCount = clickCount+1;
$("#clickCount").html(clickCount);
secretSquareColor = squareObject.data("color");
if(clickCount == 1)
{
firstColor = secretSquareColor;
squareObject.css("background-color", secretSquareColor);
}
if(clickCount == 2)
{
secondColor = secretSquareColor;
squareObject.css("background-color", secretSquareColor);
checkMatches()
}
}
function checkMatches(){
if(firstColor == secondColor)
{
alert("You win!")
}
else{
alert("Try again!");
}
resetSquares();
}
function resetSquares()
{
clickCount = 0;
$("#clickCount").html(clickCount);
$(".picture-box").css("background-color", "#cccccc");
}