Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 887 Bytes

File metadata and controls

20 lines (12 loc) · 887 Bytes

Shapes Speed Game

Your job is to implement a game that tests your speed and accuracy!

The game presents one of 4 shapes to you. You must press the correct arrow key for the shape and color. The correct keys are as follows:

  • Red Triangle -> Left Arrow
  • Red Square -> Down Arrow
  • White Triangle -> Up Arrow
  • White Square -> Right Arrow

If you press the wrong arrow for a shape, your score will be subtracted by 1 point. If you press the correct arrow, your score will be increased by 1 point.

The goal of the game is to get the most points in 30 seconds.

Here is a demo of the game:

Shapes game

You have starter code in this directory. The html and css are setup for you. There are also some suggested functions in the index.js file. You can add your own functions or rewrite anything in this file. The function names are just a suggestion.