Skip to content

michnotmeesh/projects

 
 

Repository files navigation

nonogram-puzzle

You'll be making a nonogram puzzle (Hanjie, Number Grid, Pi-Cross, etc) and allow the user to play the game by filling, unfilling, or clearing tiles of a nonogram puzzle. You do not need to know how these puzzles work to complete the project.

Objective

Complete the UI of a nonogram puzzle. Practice DOM manipulation using JavaScript by completing several functions.

We have provided the HTML (project.html) and CSS (project.css) that you will need for this project. You will be writing JavaScript code in a file called project.js and make it possible to play the puzzle.

Prerequisites

To complete this project, students should have the following:

  • Basic understanding of JS (arrays, objects, for loops, functions, if statements, this)

Your Challenge

Getting started

  1. Download this project from GitHub.

  2. Open the JavaScript file (project.js). You will be writing JavaScript code here.

  3. Open project.html on your web browser to understand what you will be adding functionality to.

Part I: Make an alert pop up when a user clicks a tile

If a user clicks on any tile, an alert pops up with a message. Complete the function setUpTiles by:

  1. Selecting every tile in the grid and implementing an onclick event handler to each tile.

(Hint: Every tile in the grid has the class .box)

  1. If any tile is clicked on, an alert pops up with the message "You clicked a tile!". Use the alert function.

Part II: Make a single tile turn black when its clicked

If a user clicks on any tile, it will turn black and become filled. You can complete this by updating and completing two functions:

  1. Complete the function changeBoxMark so that a single tile is filled in when a user clicks on it. There is a class, .filled, that handles the styling for you in the css file.

(Hint: Utilize the function's this keyword.)

  1. Update the function setUpTiles so that the changeBoxMark function is called whenever a single tile is clicked on. You should also remove the alert pop up in setUpTiles function.

Part III: Implement fill toggling

If a user clicks on a white tile, it will turn black (or become filled). If a user clicks a black tile, it will turn white (or become unfilled). Modify your changeBoxMark function so that toggling between unfilled and filled tiles is possible.

  1. You will need to implement if-else statements in the changeBoxMark function to change black tiles to white tiles and vice versa. There is no "unfilled" class for the tiles. You can clear a filled tile by simply removing the .filled class.

Part IV: Add functionality to the "Clear" button

When the "Clear" button is clicked, the user will be asked to confirm their choice and if the choice is "OK" all filled tiles will be unfilled.

  1. Complete the function clearPuzzle by selecting every tile and removing the class .filled

(Hint: Every tile in the grid has the class .box)

  1. Add a confirm message in the function clearPuzzle so that the user has a second chance to decide if they want to clear their tiles. The message should say "Are you sure you want to clear the puzzle?". The tiles will clear only if the users confirms OK.

Original project made by Paul Cleverdon and his team of developers (2018).

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 56.6%
  • HTML 36.0%
  • CSS 7.4%