Skip to content

MaxKolbe/Tip-Calculator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Frontend Mentor - Tip calculator app solution

This is a solution to the Tip calculator app challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.

Table of contents

Overview

The challenge

Users should be able to:

  • View the optimal layout for the app depending on their device's screen size
  • See hover states for all interactive elements on the page
  • Calculate the correct tip and total cost of the bill per person

Screenshot

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • Flexbox
  • CSS Grid
  • Mobile-first workflow
  • Vanilla Javascript

What I learned

Throughout the process of building this project I ended up learning a lot of things, and I will group my learnings into two categories: the html/css and Javascript.

HTML & CSS

  • I learnt the basics of css-grid
  • I learnt to refresh forms using the .reset() method
  • I learnt to prevent refreshing the page on the click of a button using the " type = button " attribute in the button tag
  • I learnt to combine both the css-grid and flexbox displays to create a responsive web design
  • I learnt to use multiple media-queries
<h1>Some HTML code I'm proud of</h1>
<button type="button" class="btn">50%</button>
.tip-box input[type = text]:focus{

}

Javascript

  • I learnt to properly use the forEach to add event listeners to my buttons
  • I learnt to validate forms properly with if statements
  • I learnt to break out of a function with an if statement
  • I learnt to make proper use of string methods
  • I learnt to round up numbers using the .toFixed() method
var button = document.querySelectorAll(".btn")

button.forEach((btn)=>{
  btn.addEventListener("click", (e)=>{
    const number = e.currentTarget.innerHTML
    const realNumber = number.slice(0,2)
    const alsoRealNumber = parseInt(realNumber)

    const bill = document.getElementById("bill").value
    const people = document.getElementById("people").value
      
    const bills = parseInt(bill)
    const peoples = parseInt(people)

    const showAmount = document.getElementById("tipAmt")
    const showTotal = document.getElementById("totPsn") 

    let tip = ( (alsoRealNumber / 100) * bills) / peoples
    let total = ( (tip * peoples) + bills ) / peoples

    if (bill.length == 0 || people.length == 0) {
      return
    }
    
    showAmount.innerHTML = `$${tip.toFixed(2)}`
    showTotal.innerHTML = `$${total.toFixed(2)}`

  })
})

Continued development

  • More on Css grid
  • More on Javascript fundamentals

Useful resources

  • W3Schools - This helped me to refresh on string methods
  • Tutorials Point - This is helped me find out how to refresh a form

Author

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published