Try Yourself => here
A simple platformer game where you control a doodler to jump on platforms, collect coins, and avoid falling.
- Move left: Press the
Left Arrow (←)
key. - Move right: Press the
Right Arrow (→)
key. - Jump: Press the
Up Arrow (↑)
key. - Start the Game: Click the "Start Game" button to begin.
- Jump sound: Plays when the doodler jumps.
- Coin sound: Plays when a coin is collected.
- Game over sound: Plays when the game ends.
- Clone or download the repository.
- Open the
index.html
file in your web browser to play the game.
project-root/
├── images/ # Image assets
├── sounds/ # Sound effects
│ ├── jump.mp3
│ ├── coin.mp3
│ └── gameover.mp3
├── src/js/ # JavaScript files
│ ├── doodler.js
│ ├── platform.js
│ └── game.js
├── styles/ # CSS styles
│ └── styles.css
├── index.html # Main HTML file
└── README.md # Project documentation
- JavaScript: Game logic and interactivity.
- CSS: Styling and layout.
- HTML: Markup structure.
- Fork the repository.
- Create a new branch (
git checkout -b feature-branch
). - Make your changes.
- Commit your changes (
git commit -m 'Add new feature'
). - Push to the branch (
git push origin feature-branch
). - Open a pull request.
This project is licensed under the MIT License. See the LICENSE file for details.
- Inspired by the classic Doodle Jump game.