如何使用HTML、CSS和JavaScript创建二进制计算器
二进制计算器是一种能够对二进制数进行数学运算的程序。如你所知,二进制数是由0和1这两个数字组成的。在这篇博客中,我们将使用这个程序来计算二进制数的加法、减法、乘法和除法。这个计算器将会使用HTML、CSS和JavaScript的基本概念来完成。现在,让我们从HTML结构开始。
HTML结构
首先,我们将创建一个表单,该表单将被分为多个表格行,提供添加1、添加0、清空显示以及加号、减号、乘号和除号按钮功能,以及一个等号按钮。
<form>
<table>
<tr>
<td colspan="4">
<input type="text" id="display" disabled />
</td>
</tr>
<tr>
<td>
<input type="button" value="1" onclick="addToDisplay(1)" />
</td>
<td>
<input type="button" value="0" onclick="addToDisplay(0)" />
</td>
<td>
<input type="button" value="C" onclick="clearDisplay()" />
</td>
<td>
<input type="button" value="+" onclick="addToDisplay('+')" />
</td>
<td>
<input type="button" value="-" onclick="addToDisplay('-')" />
</td>
<td>
<input type="button" value="*" onclick="addToDisplay('*')" />
</td>
<td>
<input type="button" value="/" onclick="addToDisplay('/')" />
</td>
<td>
<input type="button" value="=" onclick="calculate()" />
</td>
</tr>
<tr>
<td colspan="4">
Equivalent Decimal is:
<p id="toDecimal"></p>
</td>
</tr>
<tr>
<td colspan="4">
<p id="previousCalculation"></p>
</td>
</tr>
<!-- more buttons for the other operations -->
</table>
</form>
如您所见,我们拥有一个带有id“display”的禁用输入字段。此字段将用于显示输入和计算结果。我们还有一组按钮,用于不同的二进制数字(0和1)和不同的数学运算(+,-,*,/)。每个按钮都有一个onclick属性,当点击时触发一个JavaScript函数。
CSS样式
接下来,我们将添加一些CSS样式,使我们的计算器看起来更漂亮。
<style>
/* Center the calculator on the page */
table {
margin: 0 auto;
padding: 20px;
}
/* Style the display */
#display {
background-color: #f2f2f2; /* gray */
text-align: right;
padding: 12px 20px;
font-size: 20px;
border: none;
width: 100%;
}
/* Add some spacing between the buttons */
input[type="button"] {
margin: 5px;
}
/* Give the buttons a consistent size and appearance */
input[type="button"] {
width: 50px;
height: 50px;
font-size: 18px;
background-color: #f2f2f2;
border: none;
cursor: pointer;
}
#toDecimal {
font-size: 30px;
}
/* Add hover effect to the buttons */
input[type="button"]:hover {
background-color: #e6e6e6;
}
/* Add a different style for the operator buttons */
input[type="button"][value="+"],
input[type="button"][value="-"],
input[type="button"][value="*"],
input[type="button"][value="/"] {
background-color: #4caf50;
color: white;
}
/* Add a different style for the clear button */
input[type="button"][value="C"] {
background-color: #f44336;
color: white;
}
/* Add a different style for the equal button */
input[type="button"][value="="] {
background-color: #2196f3;
color: white;
}
</style>
JavaScript 功能性
最后,我们将为计算器添加 JavaScript 功能。
<script>
function addToDisplay(val) {
var display = document.getElementById("display");
display.value += val;
}
function clearDisplay() {
var display = document.getElementById("display");
display.value = "";
document.getElementById("toDecimal").innerHTML = "";
}
function calculate() {
var display = document.getElementById("display");
var result = eval(display.value);
display.value = result;
var decimalNumber = parseInt(result, 2);
document.getElementById("toDecimal").innerHTML = decimalNumber;
}
function calculate() {
var display = document.getElementById("display");
var input = display.value;
var result;
//splitting the input by operator
var numbers = input.split(/[+\-*/]/);
var operator = input.replace(numbers[0], "").replace(numbers[1], "");
//converting strings to binary
var num1 = parseInt(numbers[0], 2);
var num2 = parseInt(numbers[1], 2);
//checking the operator and performing the corresponding operation
switch (operator) {
case "+":
result = (num1 + num2).toString(2);
var decimalNumber = parseInt(result, 2);
document.getElementById("toDecimal").innerHTML = decimalNumber;
break;
case "-":
result = (num1 - num2).toString(2);
var decimalNumber = parseInt(result, 2);
document.getElementById("toDecimal").innerHTML = decimalNumber;
break;
case "*":
result = (num1 * num2).toString(2);
var decimalNumber = parseInt(result, 2);
document.getElementById("toDecimal").innerHTML = decimalNumber;
break;
case "/":
result = (num1 / num2).toString(2);
var decimalNumber = parseInt(result, 2);
document.getElementById("toDecimal").innerHTML = decimalNumber;
break;
default:
result = "Invalid operator";
var decimalNumber = parseInt(result, 2);
document.getElementById("toDecimal").innerHTML = decimalNumber;
}
display.value = result;
}
</script>
将上述所有代码组合在index.html文件中
<!DOCTYPE html>
<html>
<head>
<title>Calculator</title>
<style>
/* Center the calculator on the page */
table {
margin: 0 auto;
padding: 20px;
}
/* Style the display */
#display {
background-color: #f2f2f2; /* gray */
text-align: right;
padding: 12px 20px;
font-size: 20px;
border: none;
width: 100%;
}
/* Add some spacing between the buttons */
input[type="button"] {
margin: 5px;
}
/* Give the buttons a consistent size and appearance */
input[type="button"] {
width: 50px;
height: 50px;
font-size: 18px;
background-color: #f2f2f2;
border: none;
cursor: pointer;
}
#toDecimal {
font-size: 30px;
}
/* Add hover effect to the buttons */
input[type="button"]:hover {
background-color: #e6e6e6;
}
/* Add a different style for the operator buttons */
input[type="button"][value="+"],
input[type="button"][value="-"],
input[type="button"][value="*"],
input[type="button"][value="/"] {
background-color: #4caf50;
color: white;
}
/* Add a different style for the clear button */
input[type="button"][value="C"] {
background-color: #f44336;
color: white;
}
/* Add a different style for the equal button */
input[type="button"][value="="] {
background-color: #2196f3;
color: white;
}
</style>
</head>
<body>
<form>
<table>
<tr>
<td colspan="4">
<input type="text" id="display" disabled />
</td>
</tr>
<tr>
<td>
<input type="button" value="1" onclick="addToDisplay(1)" />
</td>
<td>
<input type="button" value="0" onclick="addToDisplay(0)" />
</td>
<td>
<input type="button" value="C" onclick="clearDisplay()" />
</td>
<td>
<input type="button" value="+" onclick="addToDisplay('+')" />
</td>
<td>
<input type="button" value="-" onclick="addToDisplay('-')" />
</td>
<td>
<input type="button" value="*" onclick="addToDisplay('*')" />
</td>
<td>
<input type="button" value="/" onclick="addToDisplay('/')" />
</td>
<td>
<input type="button" value="=" onclick="calculate()" />
</td>
</tr>
<tr>
<td colspan="4">
Equivalent Decimal is:
<p id="toDecimal"></p>
</td>
</tr>
<tr>
<td colspan="4">
<p id="previousCalculation"></p>
</td>
</tr>
<!-- more buttons for the other operations -->
</table>
</form>
<script>
function addToDisplay(val) {
var display = document.getElementById("display");
display.value += val;
}
function clearDisplay() {
var display = document.getElementById("display");
display.value = "";
document.getElementById("toDecimal").innerHTML = "";
}
function calculate() {
var display = document.getElementById("display");
var result = eval(display.value);
display.value = result;
var decimalNumber = parseInt(result, 2);
document.getElementById("toDecimal").innerHTML = decimalNumber;
}
function calculate() {
var display = document.getElementById("display");
var input = display.value;
var result;
//splitting the input by operator
var numbers = input.split(/[+\-*/]/);
var operator = input.replace(numbers[0], "").replace(numbers[1], "");
//converting strings to binary
var num1 = parseInt(numbers[0], 2);
var num2 = parseInt(numbers[1], 2);
//checking the operator and performing the corresponding operation
switch (operator) {
case "+":
result = (num1 + num2).toString(2);
var decimalNumber = parseInt(result, 2);
document.getElementById("toDecimal").innerHTML = decimalNumber;
break;
case "-":
result = (num1 - num2).toString(2);
var decimalNumber = parseInt(result, 2);
document.getElementById("toDecimal").innerHTML = decimalNumber;
break;
case "*":
result = (num1 * num2).toString(2);
var decimalNumber = parseInt(result, 2);
document.getElementById("toDecimal").innerHTML = decimalNumber;
break;
case "/":
result = (num1 / num2).toString(2);
var decimalNumber = parseInt(result, 2);
document.getElementById("toDecimal").innerHTML = decimalNumber;
break;
default:
result = "Invalid operator";
var decimalNumber = parseInt(result, 2);
document.getElementById("toDecimal").innerHTML = decimalNumber;
}
display.value = result;
localStorage.setItem("previousCalculation", input + " = " + result);
var previousCalculation = localStorage.getItem("previousCalculation");
document.getElementById("previousCalculation").innerHTML = previousCalculation;
}
</script>
</body>
</html>
在本教程中,我们学习了如何使用HTML、CSS和JavaScript创建一个二进制计算器。我们了解了如何设置HTML结构、添加CSS样式和JavaScript功能,以创建一个可工作的计算器。您可以根据需要添加更多的功能,比如处理错误情况和添加更多的操作。这个项目可以帮助您了解不同语言如何一起工作,创建一个动态和交互式的Web应用程序。