jacobdfriedmann / FEWD22-Assignment6

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#FEWD Week 6: More JavaScript


###Description

JavaScript is powerful: we're able to take user interaction and information and use it to update the page without requiring a refresh. This week, a new startup in your city, CitiPix, is looking to create a personalized picture app that allows users to store pictures they've taken around the world and quickly access them by typing in keywords or tags associated with each photo; they have asked for your help to start building the front-end prototype. You will begin by building a web-app that will take a user's input and update the background image of the page based on that input. Once again, you have been given the starter code that includes the HTML and the CSS. Use the images in the images folder and write JavaScript to make the background image reflect user input based on the Technical Requirements below.


###Real-World Applications

  • Write pseudocode before coding to demonstrate understanding of interactive programming theory and focus on the logic without being distracted by details of syntax
  • Write JavaScript code that will update a web-page based on user interaction
  • Store user-submitted information in variables to be used throughout an application
  • Change DOM elements on the page based on user input
  • Specify the order in which your application runs using control flow
  • Revisit applications and code you've written to find solutions to problems you've already solved

###Technical Requirements

  • Call $('...').val() on inputs to get the string value of your user's input

  • Store user input in var city

  • Use $('...').submit to figure out when the user clicks the "submit" button

  • Create if / else if / else conditionals to control the flow of your application

  • Write at least six different lines of pseudocode and display them inline as JavaScript comments

  • Prevent a form submission using the event.preventDefault() function

  • Use the $(document).ready() handler to delay your code from executing until all DOM assets have been loaded

  • Use the || operator in your conditionals to allow for multiple string values to execute if/else if statement code

  • If a user submits:

    • "New York" or "New York City" or "NYC" make the background of the page nyc.jpg
    • "San Francisco" or "SF" or "Bay Area" make the background of the page sf.jpg
    • "Los Angeles" or "LA" or "LAX" make the background of the page la.jpg
    • "Austin" or "ATX" make the background of the page austin.jpg
    • "Sydney" or "SYD" make the background of the page sydney.jpg

Take a look at what your final product should look like before and after:

Deliverable

After entering "NYC" and submitting:

Deliverable

####Bonus

  • Remove extra spaces or new lines that users or the browser might add before or after their input
  • Reset the user input field after it is submitted
  • Add another city!

###Evaluation

Instructional team should evaluate against the solution code and the student's fulfillment of technical requirements. Instructional team will provide a numeric grade on a scale for each technical requirement: does not meet expectations (0); meets expectations (1); exceeds expectations (2). Note: If bullet points have child bullets, grade the child bullets and not the parent bullet belonging to the child. The maximum possible score on this assignment is 26/26. Bonus materials are completely optional.


###Submission

  1. "Fork" this repository
  2. "Clone" your fork into the GitHub Desktop app
  3. Complete the assignment
  4. Commit changes and push them back to GitHub (sync)
  5. Submit a "pull request" to the "upstream" project

About


Languages

Language:CSS 85.0%Language:HTML 15.0%