This word guessing game was my first application using Javascript.
It encompasses all I've learned in the first few weeks of bootcamp.
It consists of HTML, CSS, and Javascript
I decided upon a theme of mythical creatures for this game.
There are a total of 3 pages and each page have got click events for the user to interact with. Pages are as followed:
- The first page welcomes the user and provides the rules for the game
- pick a letter every turn until word is guessed
- you have 5 incorrect letters before you lose
- each correct word will grant you a point
- click enter to begin
-
The second page displays a unicorn background and prompts the user to hit Okay to begin
-
The third page shows blank spaces and an on-screen keyboard for the user to guess letters
- the keys are coded in javascript to collect the user's input and reveal the result after
- following an incorrect guess, the screen will display the number of guesses have decreased
- following a correct guess, the blank spaces will be filled accordingly with those letters
- button that allows the user to choose a new word will be displayed when:
the user wins (a point will be added to the onscreen score)
OR the user loses (the user can continue to guess that same word as well) - there's also a maplestory sound that plays following a win ^_^