https://github.com/je-jo/turing-rps
RPS game with difficult variant
https://github.com/je-jo/turing-rps
javascript
Last synced: 4 months ago
JSON representation
RPS game with difficult variant
- Host: GitHub
- URL: https://github.com/je-jo/turing-rps
- Owner: je-jo
- Created: 2024-03-22T20:03:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-22T09:18:07.000Z (10 months ago)
- Last Synced: 2025-01-10T21:13:08.077Z (6 months ago)
- Topics: javascript
- Language: JavaScript
- Homepage: https://je-jo.github.io/turing-rps/
- Size: 168 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rock Paper Scissors
### About
Classic Rock Paper Scissors game with a difficult variant.
This is a learning project from Turing School Module 1. The spec can be found [here](https://frontend.turing.edu/projects/module-1/rock-paper-scissors-solo-v2.html).
### Live Page
[Rock Paper Scissors](https://je-jo.github.io/turing-rps/)
### Preview of App:

### Learning Goals:
- Solidify and demonstrate understanding of DRY JavaScript and event delegation to handle similar event listeners.
- Understand the difference between the data model and how the data is displayed on the DOM### Required Features:
- [x] Both players’ wins should be displayed.
- [x] Both players’ selected fighter icon should be displayed each round.
- [x] Winner (or Draw) should be announced each round.
- [x] A timeout is used after a completed round to reset the board.
- [x] This game is played by one user against a computer. The computer player should be another player object with the name of ‘computer’ and have the ability to make a random choice.
- [x] You’ll need to make two versions of Rock, Paper, Scissors - “classic” and some variation. The variation should include more than 3 options.### Helpful Links:
- [A (more) Modern CSS Reset by Andy Bell](https://piccalil.li/blog/a-more-modern-css-reset/)