Skip to player
Skip to main content
Skip to footer
Search
Connect
Watch fullscreen
Like
Comments
Bookmark
Share
Add to Playlist
Report
HTML5 simple calculator(html,css,javascript)
TechINFO
Follow
11/1/2022
HTML:
CSS:
#calculator {
width: 250px;
height: 350px;
border: 5px solid black;
text-align: center;
background: lightgreen;
margin: 150px auto;
box-shadow: 0px 0px 30px gray;
}
#display {
margin-top: 30px;
margin-bottom: 20px;
width: 220px;
height: 30px;
border: 1px solid red;
box-shadow: 0px 0px 30px red;
text-align: right;
font: 20px bold;
color: blue
}
#keys {
-webkit-appearance: button;
width: 40px;
height: 35px;
margin-left: 10px;
margin-bottom: 10px;
box-shadow: 0px 0px 20px skyblue;
cursor: pointer
}
#keys:hover {
background: yellow;
font-weight: bold;
}
#equal {
-webkit-appearance: none;
width: 90px;
height: 35px;
margin-left: 10px;
margin-bottom: 10px;
box-shadow: 0px 0px 20px skyblue;
cursor: pointer
}
JAVASCRIPT:
"use strict";
// Initilization of calculator screen value
let box = document.getElementById("display");
box.value = "";
// append character to screen
function addToScreen(e) {
box.value += e;
if (e == "c") {
resetScreen();
}
}
// reset screen
function resetScreen() {
box.value = '';
}
// evaluate a mathematical expression string
function answer() {
let s = box.value;
box.value = String(eval(s));
}
function backSpace() {
let s = box.value;
let len = s.length;
if (len > 0) {
s = s.slice(0, len-1);
}
box.value = s;
}
function power(y) {
let x = box.value;
box.value = Math.pow(x, y);
}
Read More: https://codepen.io/At
SOURCES: codepen.io
Category
🤖
Tech
Recommended
0:43
|
Up next
C++ games free keys
TechINFO
11/5/2022
0:26
c sharp online compiler plus editor
TechINFO
11/4/2022
0:22
c sharp online compiler demo
TechINFO
11/4/2022
0:20
The ‘Viral’ Secure Programming Language That’s Taking Over Tech - Rust Web Network
TechINFO
11/3/2022
0:30
Selenium 4.5.0 has been released! Read More.
TechINFO
10/31/2022
0:40
Python demo - Radix Sort Algorithm explained, Also programiz teaches javascript too...
TechINFO
10/31/2022
0:35
The future of C++ algorithmic trading is a ...
TechINFO
10/31/2022
4:34
Find which Keyword you are ranking for
TechINFO
10/29/2022
2:42
Javascript key logging
TechINFO
10/29/2022
0:18
TRANSLATE & PAINT ONLINE : How to instantly translate messages in Android 13, then....
TechINFO
10/29/2022
0:18
Microsoft Azure CTO says it is time to....
TechINFO
10/28/2022
0:18
Nothing Phone Earbud's 5 challenger's
TechINFO
10/28/2022
0:15
TRANSLATE & PAINT ONLINE : How to instantly translate messages in Android 13, then....
TechINFO
10/29/2022
0:51
Former Aide Claims She Was Asked to Make a ‘Hit List’ For Trump
Veuer
9/27/2023
1:08
Musk’s X Is ‘the Platform With the Largest Ratio of Misinformation or Disinformation’ Amongst All Social Media Platforms
Veuer
9/27/2023
4:50
59 companies that are changing the world: From Tesla to Chobani
Fortune
9/27/2023
0:46
3 Things to Know About Coco Gauff's Parents
People
9/23/2023
0:35
8 Things to Do in the Morning to Improve Productivity
Martha Stewart Living
9/22/2023
2:11
Why You Should Remember Aretha Franklin
Goalcast
9/23/2023
1:18
USC vs. Colorado: Can Caleb Williams Earn a New Heisman Moment?
SportsGrid
9/26/2023
1:04
Vic Mensa Reveals Celebrity Crush, Biggest Dating Pet Peeve & More on Speed Dating | Billboard News
Billboard
9/25/2023
1:09
Hollywood Writers Reach ‘Tentative Agreement’ With Studios After 146 Day Strike
Veuer
9/25/2023
1:26
Love is Blind stars admit they're burnt out from social media
Fortune
9/25/2023
2:01
NHA Customers in Limbo as Company Faces Potential Merger
SportsGrid
9/25/2023
2:55
Vanilla Ice Explains How the 90’s Shaped America
FACTZ
9/24/2023