-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from SayanGuha04/main
Added age calculator app
- Loading branch information
Showing
3 changed files
with
143 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
*{ | ||
margin: 0; | ||
padding: 0; | ||
font-family: 'Poppins', sans-serif; | ||
box-sizing: border-box; | ||
} | ||
|
||
.container { | ||
width: 100%; | ||
min-height: 100vh; | ||
background: linear-gradient(135deg, #4203a9, #90bafc); | ||
color: #fff; | ||
padding: 10px; | ||
} | ||
|
||
.calculator { | ||
width: 100%; | ||
max-width: 600px; | ||
margin-left: 10%; | ||
margin-top: 10%; | ||
} | ||
|
||
.calculator h1 { | ||
font-size: 60px; | ||
} | ||
|
||
.calculator h1 span { | ||
color: #ffff76; | ||
} | ||
|
||
.input-box { | ||
margin: 40px 0; | ||
padding: 35px; | ||
border-radius: 10px; | ||
background: rgba(255, 255, 255, 0.3); | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
.input-box input { | ||
flex: 1; | ||
margin-right: 20px; | ||
padding: 14px 20px; | ||
border: 0; | ||
outline: 0; | ||
font-size: 18px; | ||
border-radius: 5px; | ||
position: relative; | ||
} | ||
|
||
.input-box button { | ||
background: #ffff76; | ||
border: 0; | ||
outline: 0; | ||
padding: 15px 30px; | ||
border-radius: 5px; | ||
font-weight: 500; | ||
color: #333; | ||
cursor: pointer; | ||
} | ||
|
||
.input-box input::-webkit-calendar-picker-indicator { | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
bottom: 0; | ||
width: auto; | ||
height: auto; | ||
position: absolute; | ||
background-position: calc(100% - 10px); | ||
background-size: 30px; | ||
cursor: pointer; | ||
} | ||
|
||
#result { | ||
font-size: 20px; | ||
} | ||
|
||
#result span { | ||
color: #ffff76; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
let userInput = document.getElementById("date"); | ||
userInput.max = new Date().toISOString().split("T")[0]; | ||
let result = document.getElementById("result"); | ||
|
||
function calculateAge() { | ||
let birthDate = new Date(userInput.value); | ||
let d1 = birthDate.getDate(); | ||
let m1 = birthDate.getMonth()+1; | ||
let y1 = birthDate.getFullYear(); | ||
let today = new Date(); | ||
let d2 = today.getDate(); | ||
let m2 = today.getMonth()+1; | ||
let y2 = today.getFullYear(); | ||
let d3, m3, y3 ; | ||
y3 = y2 - y1 ; | ||
if(m2 >= m1){ | ||
m3 = m2 - m1 ; | ||
} | ||
else { | ||
y3-- ; | ||
m3 = 12 + m2 - m1; | ||
} | ||
if(d2 >= d1){ | ||
d3 = d2 - d1 ; | ||
} | ||
else { | ||
m3-- ; | ||
d3 = getDaysInMondth(y1, m1) + d2 - d1 ; | ||
} | ||
if(m3 < 0) | ||
{ | ||
m3 = 11 ; | ||
y3-- ; | ||
} | ||
result.innerHTML = `You are <span>${y3}</span> years, <span>${m3}</span> months and <span>${d3}</span> days old`; | ||
} | ||
function getDaysInMondth(year, month){ | ||
|
||
return new Date(year, month , 0).getDate(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Age Calculator</title> | ||
<link rel="stylesheet" href="/root/assets/css/age-calculator.css"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<div class="calculator"> | ||
<h1>JavaScript<br><span>Age Calculator</span></h1> | ||
<div class="input-box"> | ||
<input type="date" id="date"> | ||
<button onclick="calculateAge()">Calculate</button> | ||
</div> | ||
<p id="result"></p> | ||
</div> | ||
</div> | ||
<script src="/root/assets/scripts/age-calculator.js"></script> | ||
</body> | ||
</html> |