就是这个样的粗爆,手搓一个计算器:存储单位换算计算器
作为程序员,没有合适的工具,就得手搓一个,PC端,移动端均可适用。废话不多说,直接上代码。
HTML:
<div class="calculator"><label for="inputValue">输入存储值:</label> <input id="inputValue" type="number" placeholder="请输入数值"> <label for="inputUnit">选择输入单位:</label><select id="inputUnit"><option value="bytes">字节 (B)</option><option value="kilobytes">千字节 (KB)</option><option value="megabytes">兆字节 (MB)</option><option value="gigabytes">吉字节 (GB)</option><option value="terabytes">太字节 (TB)</option><option value="petabytes">拍字节 (PB)</option></select><label for="outputUnit">选择输出单位:</label><select id="outputUnit"><option value="bytes">字节 (B)</option><option value="kilobytes">千字节 (KB)</option><option value="megabytes">兆字节 (MB)</option><option value="gigabytes">吉字节 (GB)</option><option value="terabytes">太字节 (TB)</option><option value="petabytes">拍字节 (PB)</option></select><button onclick="convertStorage()">计算</button><div class="result"><p>转换结果:</p><p id="outputValue">0</p></div></div>
JS:
function convertStorage() {
const inputValue = parseFloat(document.getElementById('inputValue').value);
const inputUnit = document.getElementById('inputUnit').value;
const outputUnit = document.getElementById('outputUnit').value;
if (isNaN(inputValue) || inputValue < 0) {
alert('请输入有效的存储值');
return;
}
const conversionRates = {
bytes: 1,
kilobytes: 1024,
megabytes: 1024 * 1024,
gigabytes: 1024 * 1024 * 1024,
terabytes: 1024 * 1024 * 1024 * 1024,
petabytes: 1024 * 1024 * 1024 * 1024 * 1024
};
const valueInBytes = inputValue * conversionRates[inputUnit];
const convertedValue = valueInBytes / conversionRates[outputUnit];
document.getElementById('outputValue').textContent = convertedValue.toFixed(2);
}
CSS:
.calculator {
width: 300px;
background-color: #333;
color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
label {
display: block;
margin-bottom: 10px;
font-size: 16px;
}
input, select {
width: 100%!important;
padding: 10px!important;
margin-bottom: 20px;
color: #000000;
border-radius: 5px;
border: 1px solid #555;
font-size: 16px!important;
background-color: #ffffff!important;
}
button {
width: 100%;
padding: 10px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: orange;
}
.result {
margin-top: 20px;
text-align: center;
}
option {
background-color: #ffffff;
}
p {
font-size: 18px;
margin-top: 5px!important;
}
原文地址:https://blog.csdn.net/yuchangchenTT/article/details/143737780
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!