Popular posts from this blog
THE MEMORY GAME
The memory game is played by matching two cards together, any two cards matched correctly give the player one point. It is a basic mobile game designed with HTML, CSS and Javascript only. When two cards are chosen correctly, the data-id of the cards are stored in an array using the PUSH method. While the Math.random is to shuffle the game when the game restarts or the browser refreshes. The game cards cannot be viewed or inspected using the browser developer/inspect element tool. Every card was added to the game board using the javascript APPEND method to avoid cheating. Some other methods used in developing this game include: Array []; Sort(); Append(); Math.random(); Push(); if... else .... Play game HERE
WHAC-A-MOLE GAME
The Whac-A-Mole can be a very engaging game if developed in it's complexity. This game is designed to be played by only user, by clicking on the mole as many times as possible. Any correct click gives the user a point. The user can click on the mole multiple times in a card. The user is expected to reach a minimum score before proceeding to the next level. PLAY GAME HERE Some other methods used in developing this game include: Array []; Sort(); Append(); Math.random(); Push(); if... else ....

Comments
Post a Comment