Skip to content

Latest commit

 

History

History
68 lines (48 loc) · 1.74 KB

README.md

File metadata and controls

68 lines (48 loc) · 1.74 KB

Try Yourself => here

Doodler Game

A simple platformer game where you control a doodler to jump on platforms, collect coins, and avoid falling.

How to Play

  • 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.

Sounds

  • Jump sound: Plays when the doodler jumps.
  • Coin sound: Plays when a coin is collected.
  • Game over sound: Plays when the game ends.

Installation

  1. Clone or download the repository.
  2. Open the index.html file in your web browser to play the game.

File Structure

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

Technologies Used

  • JavaScript: Game logic and interactivity.
  • CSS: Styling and layout.
  • HTML: Markup structure.

Contributing

  1. Fork the repository.
  2. Create a new branch (git checkout -b feature-branch).
  3. Make your changes.
  4. Commit your changes (git commit -m 'Add new feature').
  5. Push to the branch (git push origin feature-branch).
  6. Open a pull request.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Acknowledgments

  • Inspired by the classic Doodle Jump game.