Skip to content

Latest commit

 

History

History
executable file
·
30 lines (20 loc) · 1.34 KB

README.md

File metadata and controls

executable file
·
30 lines (20 loc) · 1.34 KB

Frogger Arcade Game

Summary

Frogger Arcade is a variation of the classic Frogger arcade game.

Goals/Winning

In this game the goal is simple, get the hero character to move across the gray bricks towards the water without getting hit by the enemy bugs. The user's score increases by one point for each level passed and decrease if collide with enemies. The number of enemy bugs also increase with each level and are randomly placed across the gray bricks at the start of each game.

Movement and Controls

Users move the hero character by using the main up/right/left/down arrow keys on their keyboard. You can pause the game with the "space" and change the player with "enter" keyboard;

Demo online

Installation

To run the application:

  1. Download the GitHub zip file or clone the repository onto your local workstation:
  2. Open a browser window and navigate to the index.html file in your application's directory.

Tools / Techniques

  • Object-Oriented JavaScript
  • constructor functions to create multiple Enemy instances
  • prototypal inheritance
  • HTML5 Canvas API
  • resource loading via immediately-invoked function expressions (IIFE)

Project Requirements

https://review.udacity.com/#!/rubrics/15/view "Frogger Arcade Game Project Requirements"