-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'Main' into feature/memorygame
- Loading branch information
Showing
9 changed files
with
976 additions
and
2 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Maze</title> | ||
<link rel="stylesheet" href="./style.css"> | ||
</head> | ||
<body> | ||
|
||
<div id="page"> | ||
|
||
<div id="Message-Container"> | ||
<div id="message"> | ||
<h1>Congratulations!</h1> | ||
<p>You are done.</p> | ||
<p id="moves"></p> | ||
<input id="okBtn" type="button" onclick="toggleVisablity('Message-Container')" value="Cool!" /> | ||
</div> | ||
</div> | ||
|
||
<br> | ||
<div id="menu"> | ||
<div class="custom-select"> | ||
<select id="diffSelect"> | ||
<option value="10">Easy</option> | ||
<option value="15">Medium</option> | ||
<option value="25">Hard</option> | ||
<option value="38">Extreme</option> | ||
</select> | ||
</div> | ||
<input id="startMazeBtn" type="button" onclick="makeMaze()" value="Start" /> | ||
</div> | ||
|
||
<div id="view"> | ||
<div id="mazeContainer"> | ||
<canvas id="mazeCanvas" class="border" height="1100" width="1100"></canvas> | ||
</div> | ||
</div> | ||
|
||
<p id="instructions">Use arrow keys to move the key to the house!</p> | ||
|
||
</div> | ||
|
||
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> | ||
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery.touchswipe/1.6.18/jquery.touchSwipe.min.js"></script> | ||
|
||
<script src="./script.js"></script> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.