forked from Sulagna-Dutta-Roy/GGExtensions
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Midpoint Calculator Extension: Sulagna-Dutta-Roy#2153
- Loading branch information
1 parent
e426f34
commit c868d00
Showing
4 changed files
with
154 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,10 @@ | ||
{ | ||
"manifest_version": 3, | ||
"name": "Midpoint Calculator", | ||
"version": "1.0", | ||
"description": "Midpoint Calculator.", | ||
"permissions": [], | ||
"action": { | ||
"default_popup": "popup.html" | ||
} | ||
} |
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,29 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" href="style.css" /> | ||
<title>Midpoint Calculator</title> | ||
</head> | ||
|
||
<body> | ||
<div class="main"> | ||
<div class="cal"> | ||
<h1>Midpoint Calculator</h1> | ||
<label for="point1">Enter Point 1 (x1, y1):</label> | ||
<input type="text" id="point1" placeholder="Enter x1, y1" /> | ||
|
||
<label for="point2">Enter Point 2 (x2, y2):</label> | ||
<input type="text" id="point2" placeholder="Enter x2, y2" /> | ||
|
||
<button id="myButton">Calculate</button> | ||
<div id="result"></div> | ||
</div> | ||
<div id="answer"></div> | ||
</div> | ||
<script src="script.js"></script> | ||
</body> | ||
|
||
</html> |
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 @@ | ||
document.getElementById('myButton').addEventListener('click', function() { | ||
const point1 = document.getElementById('point1').value.split(','); | ||
const point2 = document.getElementById('point2').value.split(','); | ||
|
||
if (point1.length === 2 && point2.length === 2) { | ||
const x1 = parseFloat(point1[0]); | ||
const y1 = parseFloat(point1[1]); | ||
const x2 = parseFloat(point2[0]); | ||
const y2 = parseFloat(point2[1]); | ||
|
||
if (!isNaN(x1) && !isNaN(y1) && !isNaN(x2) && !isNaN(y2)) { | ||
const midX = (x1 + x2) / 2; | ||
const midY = (y1 + y2) / 2; | ||
|
||
document.getElementById('result').innerText = `Midpoint: (${midX}, ${midY})`; | ||
} else { | ||
document.getElementById('result').innerText = 'Please enter valid numbers.'; | ||
} | ||
} else { | ||
document.getElementById('result').innerText = 'Please enter two points in the format x,y.'; | ||
} | ||
}); |
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,93 @@ | ||
body { | ||
font-family: "Arial", sans-serif; | ||
background: linear-gradient(50deg, #136f74, #087f9d); | ||
margin: 0; | ||
padding: 0; | ||
list-style: 1.6; | ||
height: 400px; | ||
width: 400px; | ||
} | ||
|
||
.main { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
min-height: 100vh; | ||
} | ||
|
||
@media screen and (max-width:400px) { | ||
#formula { | ||
font-size: 1.3rem; | ||
font-weight: 600; | ||
} | ||
} | ||
|
||
.cal { | ||
text-align: center; | ||
color: #ddd; | ||
} | ||
|
||
h1 { | ||
margin: 40px 0; | ||
} | ||
|
||
input { | ||
width: calc(100% - 100px); | ||
padding: 10px; | ||
margin: 10px 0 20px 0; | ||
box-sizing: border-box; | ||
font-size: 16px; | ||
border: 1px solid #ddd; | ||
border-radius: 5px; | ||
} | ||
|
||
#result { | ||
margin: 1.4rem 0; | ||
font-size: 1.5rem; | ||
color: #000000; | ||
} | ||
|
||
|
||
.gcd { | ||
font-size: 12px; | ||
font-weight: 600; | ||
margin-top: 0; | ||
} | ||
|
||
abel { | ||
font-weight: bold; | ||
display: block; | ||
margin-bottom: 8px; | ||
color: #333333; | ||
} | ||
|
||
input, | ||
select { | ||
width: 100%; | ||
padding: 10px; | ||
margin-bottom: 16px; | ||
box-sizing: border-box; | ||
border-radius: 10px; | ||
} | ||
|
||
button { | ||
width: 100%; | ||
height: 40px; | ||
font-size: 16px; | ||
cursor: pointer; | ||
background-color: #6f0150; | ||
color: #ffffff; | ||
border: none; | ||
border-radius: 9px; | ||
transition: background-color 0.3s; | ||
} | ||
|
||
button:hover { | ||
background-color: #45a09e; | ||
} | ||
|
||
#result { | ||
margin-top: 16px; | ||
font-weight: bold; | ||
color: #020101; | ||
} |