当前位置: 首页 > news >正文

就是这个样的粗爆,手搓一个计算器:十进制到百分比转换器

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

HTML:

<div class="calculator"><div class="input-group"><label>十进制数:</label> <input id="decimal" step="any" type="number" placeholder="请输入十进制数"></div><button onclick="convertToPercentage()">转换为百分比</button><div class="result"><p>计算结果:</p><p>百分比: <span id="percentageOutput">0.00%</span></p></div></div>

JS:

function convertToPercentage() {const decimal = parseFloat(document.getElementById('decimal').value);if (isNaN(decimal)) {alert('请输入有效的十进制数');return;}const percentage = decimal * 100;document.getElementById('percentageOutput').textContent = percentage.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;
}

线上运行,可以直接打开:十进制到百分比转换器


http://www.mrgr.cn/news/69278.html

相关文章:

  • html数据类型
  • python——模块 迭代器 正则
  • Unity肢体控制(关节控制)
  • P1197 星球大战(并查集+逆向思维)
  • 《TCP/IP网络编程》学习笔记 | Chapter 10:多进程服务器端
  • Flutter开发者进阶:接入安卓原生页面
  • 稳压二极管详解
  • 电磁兼容(EMC):GB 4343.1喀呖声 详解
  • js 好用的字符操作方法
  • 模块的导入
  • 快速上手Amazon SES:掌握企业级邮件解决方案
  • Python练习14
  • it行业热门岗位推荐,高薪就业不发愁
  • Ingress nginx 公开TCP服务
  • Linux服务器软件包管理的使用
  • 【理论笔记】网工基础知识 3 —— 数据交换技术
  • MYSQL知识总结
  • 简单的TCP程序
  • MySQL数据库专栏(五)连接MySQL数据库C API篇
  • 【实战篇P2-5】手把手实现STM32+ESP8266+原子云服务器+手机APP应用——第五节-编写Android手机APP程序实现接入原子云服务器
  • RabbitMQ的死信队列
  • 【数字图像处理】一篇搞定傅里叶变换
  • Cannot read properties of undefined (reading ‘$isServer‘)
  • 算力网络多方资源共享机制:算力交易
  • Selenium自动化测试 —— 模拟鼠标键盘的操作事件
  • gee数据——planet全球高分辨率影像的矢量范围(亚洲、美洲)