-
Notifications
You must be signed in to change notification settings - Fork 0
/
ColorGame.html
94 lines (89 loc) · 5.76 KB
/
ColorGame.html
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
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>HueHueHue Game!</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="CSS/normalize.css">
<link rel="stylesheet" href="CSS/colorGame.css">
<script src="JS/jquery.min.js"></script>
</head>
<body>
<header>
<div class="headWrapper">
<div class="gameMenu">
<!--establishing predetermined difficulty-->
<div class="container-fluid">
<div class="row">
<h2>Difficulty: </h2>
<div class="btn-group btn-group-toggle" data-toggle="buttons" role="group" aria-label="Difficulty Buttons">
<!-- TableSize, Saturation: 70-80%, Lightness: 40% -->
<button type="button" value="EASY" class="btn btn-secondary" id="easyDifficulty" onclick="startGame(5, 0.7, 0.8, 0.4)">EASY</button>
<!-- TableSize, Saturation: 80-90%, Lightness: 60% -->
<button type="button" value="MEDIUM" class="btn btn-secondary" id="mediumDifficulty" onclick="startGame(10, 0.8, 0.9, 0.6)">MEDIUM</button>
<!-- TableSize, Saturation: 90-95%, Lightness: 80% -->
<button type="button" value="HARD" class="btn btn-secondary" id="hardDifficulty" onclick="startGame(15, 0.9, 0.95, 0.8)">HARD</button>
</div>
</div>
</div>
<forum action="index.html" method="get">
<h2>Custom Difficulty: </h2>
<div class="customGame input-group">
<label for="customTable">Table Size:
<input type="text" class="form-control" id="customTable" value="20" placeholder="whole integer"></label>
<label for="customTable">Min Saturation:
<input type="text" class="form-control" id="customSatMin" value="0.95" placeholder="0.01 to 1"></label>
<label for="customTable">Max Saturation:
<input type="text" class="form-control" id="customSatMax" value="0.98" placeholder="0.01 to 1"></label>
<label for="customTable">Lightness:
<input type="text" class="form-control" id="customLight" value="0.95" placeholder="0.01 to 1"></label>
<button type="button" class="btn btn-secondary" id="customButton" value="Begin Custom Game"
onclick="startGame(customTable.value, customSatMin.value, customSatMax.value, customLight.value)">Begin Custom Game</button>
</div>
</forum>
</div>
<div> <nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">Caleb's Color Game</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="Catena.html">Catena</a>
</li>
</ul>
<span class="navbar-text">
This color game will test how well your eyes can see variations in pixel brightness!
</span>
</div>
</nav></div>
</div>
<div class="score">Score: </div>
</header>
<div class="JScheckMessage">There appears to be something wrong with your JavaScript.
Verify that JavaScript is enabled and/or refresh the page. <br> If there still
appears to be a problem, please <a href="contactMe.html" class="contactMe">contact me</a>
to fix this issue. </div>
<div class="gameSegmentWrapper">
<div class="shell">
<table id="autoTable"></table>
</div>
</div>
<!-- <footer>
<div class="footWrapper">
<div class="gameRank">User's current rank will be displayed here</div>
<div class="siteFooter">Basic Site Footer will go here</div>
</div>
</footer> -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
<script src="JS/colorGame.js"></script>
</html>