-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2463 from somilyadav7/master
Added Tech Memory Block Game
- Loading branch information
Showing
68 changed files
with
884 additions
and
0 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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file not shown.
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,43 @@ | ||
# **Tech Memory Blocks** | ||
|
||
--- | ||
|
||
<br> | ||
|
||
## **Description 📃** | ||
<!-- add your game description here --> | ||
- Match pairs of tech icons from various technologies and devices by flipping blocks and remembering their positions to test and improve your memory skills. | ||
</p> | ||
|
||
## **functionalities 🎮** | ||
<!-- add functionalities over here --> | ||
- Intro Screen — Introduction of the game | ||
- Difficulty mode selection — Selection for a difficulty level for the game. The difference between each level will be explained in a later section. | ||
- Gameplay area — This is where the user plays the actual game. | ||
- Users will have limited number of attempts | ||
- Displays the score of how many icons the user has guessed right | ||
<br> | ||
|
||
## **How to play? 🕹️** | ||
- Open the index.html file | ||
- Select difficulty | ||
- The tech memory blocks game consists of 36 blocks arranged in 6 x 6 fashion. | ||
- The blocks have images on one side. The blocks are turned upside down with images facing down. One image is present on two blocks. | ||
- You are supposed to match two blocks with the same image. If you have matched correctly then the blocks are removed else they are turned upside down again. | ||
|
||
<br> | ||
|
||
## **Screenshots 📸** | ||
|
||
### Home | ||
|
||
![Home](home.png) | ||
|
||
### How to play | ||
|
||
![How to play](howtoplay.png) | ||
|
||
### Game | ||
|
||
![Game](game.png) | ||
|
Binary file not shown.
Oops, something went wrong.
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,116 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title> | ||
Memory Blocks Help | ||
</title> | ||
|
||
<style> | ||
html,body | ||
{ | ||
width : 100%; | ||
height : 100%; | ||
padding : 0; | ||
margin : 0px; | ||
background-color : black; | ||
} | ||
|
||
.heading | ||
{ | ||
display : block; | ||
width : 80%; | ||
float : left; | ||
position : relative; | ||
color : rgb(231,99,95); | ||
font-family : 'Tahoma'; | ||
font-weight : bold; | ||
font-size : 56px; | ||
left : 20px; | ||
margin : 0px; | ||
margin-top : 60px; | ||
} | ||
|
||
|
||
.topic | ||
{ | ||
display : block; | ||
width : 80%; | ||
float : left; | ||
position : relative; | ||
color : rgb(249,177,109); | ||
font-family : 'Tahoma'; | ||
font-weight : bold; | ||
font-size : 28px; | ||
left : 20px; | ||
margin : 0px; | ||
margin-top : 20px; | ||
} | ||
|
||
.howto | ||
{ | ||
display : block; | ||
width : 98%; | ||
float : left; | ||
position : relative; | ||
color : rgb(249,177,109); | ||
font-family : 'Tahoma'; | ||
font-weight : bold; | ||
font-size : 25px; | ||
left : 20px; | ||
margin : 0px; | ||
margin-top : 40px; | ||
font-weight : bold; | ||
border-bottom : 5px solid gray; | ||
padding-bottom : 30px; | ||
} | ||
|
||
.body-heading | ||
{ | ||
display : block; | ||
width : 80%; | ||
float : left; | ||
position : relative; | ||
color : rgb(249,177,109); | ||
font-family : 'Tahoma'; | ||
font-weight : lighter; | ||
font-size : 28px; | ||
left : 20px; | ||
margin : 0px; | ||
margin-top : 20px; | ||
} | ||
|
||
ul | ||
{ | ||
display : inline-block; | ||
} | ||
|
||
ul li | ||
{ | ||
list-style-type : square; | ||
color : rgb(249,177,109); | ||
font-family : 'Tahoma'; | ||
font-weight : lighter; | ||
font-size : 18px; | ||
margin-top : 8px; | ||
} | ||
</style> | ||
|
||
</head> | ||
|
||
<body> | ||
<h1 class="heading">Tech Memory Blocks Game</h1> | ||
|
||
|
||
<h3 class="howto">How to play: </h3> | ||
|
||
<h2 class="body-heading">DIRECTIONS-</h2> | ||
|
||
<ul> | ||
<li>The memory blocks game consists of 36 blocks arranged in 6 x 6 fashion.</li> | ||
<li>The blocks have images on one side. The blocks are turned upside down with images facing down. One image is present on two blocks.</li> | ||
<li>You are supposed to match two blocks with the same image. If you have matched correctly then the blocks are removed else they are turned upside down again.</li> | ||
<li>ALL THE BEST! </li> | ||
</ul> | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.
Oops, something went wrong.