使用html+css+js实现简易计算器
2018-12-17 10:47:32来源:博客园 阅读 ()
使用html+css+js实现简易计算器,
效果图如下:
html代码如下:
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <meta http-equiv="X-UA-Compatible" content="ie=edge"> 7 <title>calculator</title> 8 <link rel="stylesheet" type="text/css" href="style.css"> 9 <script type="text/javascript" src="contain.js"></script> 10 <title>Document</title> 11 </head> 12 <body> 13 <div class="calculator"> 14 <form name="calculator"> 15 <input type="text" id="display" value=""> 16 <br> 17 <input type="button" class="btn number txt" value="TYNAM"> 18 <input type="button" id="clear" class="btn number" value="AC" onclick="cleardisplay();"> 19 <input type="button" class="btn number" value="<-" onclick="del();"> 20 <input type="button" class="btn operator" value="/" onclick="get(this.value);"> 21 <br> 22 <input type="button" class="btn number" value="7" onclick="get(this.value);"> 23 <input type="button" class="btn number" value="8" onclick="get(this.value);"> 24 <input type="button" class="btn number" value="9" onclick="get(this.value);"> 25 <input type="button" class="btn operator" value="*" onclick="get(this.value);"> 26 <br> 27 <input type="button" class="btn number" value="4" onclick="get(this.value);"> 28 <input type="button" class="btn number" value="5" onclick="get(this.value);"> 29 <input type="button" class="btn number" value="6" onclick="get(this.value);"> 30 <input type="button" class="btn operator" value="+" onclick="get(this.value);"> 31 <br> 32 <input type="button" class="btn number" value="1" onclick="get(this.value);"> 33 <input type="button" class="btn number" value="2" onclick="get(this.value);"> 34 <input type="button" class="btn number" value="3" onclick="get(this.value);"> 35 <input type="button" class="btn operator" value="-" onclick="get(this.value);"> 36 <br> 37 <input type="button" class="btn number" value="0" onclick="get(this.value);"> 38 <input type="button" class="btn number" value="." onclick="get(this.value);"> 39 <input type="button" class="btn operator equal" value="=" onclick="calculates();"> 40 </form> 41 </div> 42 </body> 43 </html>
CSS代码如下:
1 * { 2 border: none; 3 font-family: 'Open Sans', sans-serif; 4 margin: 0; 5 padding: 0; 6 } 7 8 .calculator { 9 background-color: #fff; 10 height: 600px; 11 margin: 50px auto; 12 width: 600px; 13 } 14 15 form { 16 background-color: rgb(75, 70, 71); 17 padding: 5px 1px auto; 18 width: 245px; 19 } 20 .btn { 21 outline: none; 22 cursor: pointer; 23 font-size: 20px; 24 height: 45px; 25 margin: 5px 0 5px 10px; 26 width: 45px; 27 28 } 29 .btn:first-child { 30 margin: 5px 0 5px 10px; 31 } 32 33 #display { 34 outline: none; 35 background-color: #dededc; 36 color: rgb(75, 70, 71); 37 font-size: 40px; 38 height: 47px; 39 text-align: right; 40 width: 224px; 41 margin: 10px 10px auto; 42 } 43 .number { 44 background-color: rgb(143, 140, 140); 45 color: #dededc; 46 } 47 48 .operator { 49 background-color: rgb(239, 141, 49); 50 color: #ffffff; 51 } 52 53 .equal{ 54 width: 105px; 55 } 56 57 .txt{ 58 font-size:12px; 59 background: none; 60 }
JS代码如下:
/* display clear */ function cleardisplay() { document.getElementById("display").value = ""; } /* del */ function del() { var numb = ""; numb = document.getElementById("display").value; for(i=0;i<numb.length;i++) { document.getElementById("display").value = numb.substring(0,numb.length-1); if(numb == '') { document.getElementById("display").value = ''; } } } /* recebe os valores */ function get(value) { document.getElementById("display").value += value; } /* calcula */ function calculates() { var result = 0; result = document.getElementById("display").value; document.getElementById("display").value = ""; document.getElementById("display").value = eval(result); };
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:idea vue.js插件安装
下一篇:深入解析ES6之数据解构的用法
- CSS中的float和margin的混合使用 2020-06-11
- HTML+CSS+JS模仿win10亮度调节效果 2020-06-04
- 使用 Apache SSI(Server Side Includes) 制作多语言版静态网 2020-06-01
- position: sticky实现导航栏下滑吸顶效果 2020-05-30
- 通配符选择器 2020-05-27
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash