A browser-based color sorting puzzle game. Sort all the discs onto their matching colored poles — one disc at a time, only from the top of each pole.
- Select a difficulty level to see the game board
- Click Start Game to begin
- Drag and drop discs between poles to sort them by color
- Only the top disc on each pole can be moved
- Win by getting all discs sorted onto their matching poles
| Level | Poles | Discs per pole |
|---|---|---|
| Beginner | 4 | 3 |
| Easy | 5 | 4 |
| Medium | 6 | 5 |
| Expert | 7 | 6 |
- HTML, CSS, JavaScript (vanilla, ES modules)
- No frameworks or dependencies
JumbledBlockers/
├── index.html
├── css/
│ ├── base.css
│ ├── components.css
│ └── animations.css
└── js/
├── main.js
├── gameState.js
├── ui.js
├── dragDrop.js
└── timer.js