add project example

pull/797/head
Dmitrii 2 years ago
parent 08b771c863
commit 92a12b935a

@ -0,0 +1,30 @@
# Rock, Paper, Scissors Game
**Tier:** 1-Beginner
- A standard Rock, Paper, Scissors game to play.
- HTML/CSS/JavaScript knowledge.
## User Stories
- [ ] User can press one of the three buttons to make a choice (rock, paper, scissors).
- [ ] The choice is displayed on the screen along with a randomly generated opponent's (computer) choice.
- [ ] The result (who won) is displayed on the screen.
- [ ] User can press the buttons again to play again.
## Bonus features
- [ ] Add a Play button to start the game.
- [ ] Add a counter to display player's and opponent's count.
- [ ] Add a button to restart the game (reset the counter).
- [ ] Add a win condition (e.g., first one who gets three rounds wins).
- [ ] Add animations.
## Useful links and resources
[DOM manipulation](https://developer.mozilla.org/docs/Learn/JavaScript/Client-side_web_APIs/Manipulating_documents)
[JavaScript conditionals](https://developer.mozilla.org/docs/Learn/JavaScript/Building_blocks/conditionals)
## Example projects
[Basic CodePen Example](https://codepen.io/Dimterion/pen/GRPvvVP)

@ -67,6 +67,7 @@ required to complete them.
| [Pomodoro Clock](./Projects/1-Beginner/Pomodoro-Clock.md) | Task timer to aid personal productivity | 1-Beginner | | [Pomodoro Clock](./Projects/1-Beginner/Pomodoro-Clock.md) | Task timer to aid personal productivity | 1-Beginner |
| [Product Landing Page](./Projects/1-Beginner/Product-Landing-Page.md) | Showcase product details for possible buyers | 1-Beginner | | [Product Landing Page](./Projects/1-Beginner/Product-Landing-Page.md) | Showcase product details for possible buyers | 1-Beginner |
| [Quiz App](./Projects/1-Beginner/Quiz-App.md) | Test your knowledge by answering questions | 1-Beginner | | [Quiz App](./Projects/1-Beginner/Quiz-App.md) | Test your knowledge by answering questions | 1-Beginner |
| [Rock, Paper, Scissors Game](./Projects/1-Beginner/rockPaperScissorsGame.md) | Play a standard Rock, Paper, Scissors Game | 1-Beginner |
| [Recipe App](./Projects/1-Beginner/Recipe-App.md) | Recipe | 1-Beginner | | [Recipe App](./Projects/1-Beginner/Recipe-App.md) | Recipe | 1-Beginner |
| [Random Meal Generator](./Projects/1-Beginner/Random-Meal-Generator.md) | Generate random meals | 1-Beginner | | [Random Meal Generator](./Projects/1-Beginner/Random-Meal-Generator.md) | Generate random meals | 1-Beginner |
| [Random Number Generator](./Projects/1-Beginner/Random-Number-Generator.md) | Generate random number between range. | 1-Beginner | | [Random Number Generator](./Projects/1-Beginner/Random-Number-Generator.md) | Generate random number between range. | 1-Beginner |

Loading…
Cancel
Save