国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

使用html+css+js實現簡易計算器

番茄西紅柿 / 1578人閱讀

摘要:使用實現簡易計算器,效果圖如下代碼如下代碼如下代碼如下

使用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>calculatortitle>
 8     <link rel="stylesheet" type="text/css" href="style.css">
 9     <script type="text/javascript" src="contain.js">script>
10     <title>Documenttitle>
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)
    {
        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);
};

 

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/1439.html

相關文章

  • 剖析簡易算器帶你入門微信小程序開發

    摘要:源碼分析這個簡易計算器界面布局依然延續祖制,采用布局,貌似微信官方也是這么推薦的官方文檔中就是使用。本計算器存在不完善和,因為重點不是實現全部功能,而是搞清楚微信小程序開發方法,所以非關注點不用在意。 寫在前面,但是重點在后面 這是教程,也不是教程。 可以先看Demo的操作動圖,看看是個什么玩意兒,GitHub地址(https://github.com/dunizb/wxapp-sCa...

    AaronYuan 評論0 收藏0
  • 剖析簡易算器帶你入門微信小程序開發

    摘要:源碼分析這個簡易計算器界面布局依然延續祖制,采用布局,貌似微信官方也是這么推薦的官方文檔中就是使用。本計算器存在不完善和,因為重點不是實現全部功能,而是搞清楚微信小程序開發方法,所以非關注點不用在意。 寫在前面,但是重點在后面 這是教程,也不是教程。 可以先看Demo的操作動圖,看看是個什么玩意兒,GitHub地址(https://github.com/dunizb/wxapp-sCa...

    Hanks10100 評論0 收藏0
  • 剖析簡易算器帶你入門微信小程序開發

    摘要:源碼分析這個簡易計算器界面布局依然延續祖制,采用布局,貌似微信官方也是這么推薦的官方文檔中就是使用。本計算器存在不完善和,因為重點不是實現全部功能,而是搞清楚微信小程序開發方法,所以非關注點不用在意。 寫在前面,但是重點在后面 這是教程,也不是教程。 可以先看Demo的操作動圖,看看是個什么玩意兒,GitHub地址(https://github.com/dunizb/wxapp-sCa...

    RichardXG 評論0 收藏0
  • 2019 簡易Web開發指南

    摘要:工具軟件欲先攻其事必先利其器,用好工具是做好開發的基礎。框架目前最流行簡單易用,越來越多人用曾經很流行,現在有點衰退狀態管理后端渲染開發工具依賴管理,應用打包,任務管理,編輯器擴展,,移動端有了前端的知識后,我們還可以開發手機。 2019年即將到來,各位同學2018年辛苦了。 不管大家2018年過的怎么樣,2019年還是要繼續加油的! 在此我整理了個人認為在2019仍是或者將成為主流的...

    vspiders 評論0 收藏0
  • Webpack系列——手把手教你使用Webpack搭建簡易的React開發環境

    摘要:在這篇文章中我們開始利用我們之前所學搭建一個簡易的開發環境,用以鞏固我們之前學習的知識。 文章首發于我的github及個人博客,github請看https://github.com/huruji/blo...,轉載請注明出處。 在這篇文章中我們開始利用我們之前所學搭建一個簡易的React開發環境,用以鞏固我們之前學習的Webpack知識。首先我們需要明確這次開發環境需要達到的效果:1、...

    cucumber 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<