This is an amazing game to practice HTML, CSS and a little Javascript. The game goal is to POP all the balloons by clicking on them.
This project comes with the necessary files to start working, but you have two options to start:
a) Open this link in your browser with gitpod (recommended): https://gitpod.io#https://github.com/breatheco-de/exercise-pop-baloons-javascript.git
b) You can clone this repository on your local computer:
1$ git clone https://github.com/breatheco-de/exercise-pop-baloons-javascript.git
Run the website by typing the following command on your terminal: $ npx http-server --yes -c-1
Build a game with the following workflow:
window.onload
) you have to render all the balloons.null
.<div class="balloon active"></div>
<div class="balloon popped"></div>
<div class="balloon active"></div>
<div class="balloon active"></div>
Add that string to the innerHTML of the <div id="balloon-map">
element using document.querySelector.
Update your function that renders the ballons to add also an onClick on each balloon div to listen to the click.
When a balloon is clicked, go the array of colors and turn the color back to null.