就是这个样的粗爆,手搓一个计算器:时间百分比计算器

       作为程序员,没有合适的工具,就得手搓一个,PC端,移动端均可适用。废话不多说,直接上代码。

HTML:

<div class="calculator"><div class="input-group"><label>总时间 (小时):</label> <input id="totalTime" step="any" type="number" placeholder="请输入总时间"></div><div class="input-group"><label>时间百分比 (%):</label> <input id="percentage" step="any" type="number" placeholder="请输入百分比"></div><button onclick="calculateTimePercentage()">计算</button><div class="result"><p>计算结果:</p><p>时间: <span id="resultOutput">0.00</span> 小时</p></div></div>

JS:

function calculateTimePercentage() {
    const totalTime = parseFloat(document.getElementById('totalTime').value);
    const percentage = parseFloat(document.getElementById('percentage').value);

    if (isNaN(totalTime) || isNaN(percentage)) {
        alert('请输入有效的总时间和百分比');
        return;
    }

    const time = (totalTime * percentage) / 100;

    document.getElementById('resultOutput').textContent = time.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;
        display: block;
        margin: 0px;
     margin-bottom: 20px;
    margin-left: 0px!important;
}

button:hover {
    background-color: orange;
}

.result {
    margin-top: 20px;
    text-align: center;
}

option {
        background-color: #ffffff;
}


p {
    font-size: 18px;
        margin-top: 5px!important;
}

  线上运行,可以直接打开:时间百分比计算器

上一篇:一文总结你需要的OpenCV操作


下一篇:Adb命令大全