HTML CSS, JavaScript 计算器

效果图:

  

代码:

<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            /* Basic Reset */
            
            * {
                border: none;
                font-family: 'Open Sans', sans-serif;
                margin: 0;
                padding: 0;
            }
            
            body {}
            
            .center {
                background-color: #fff;
                border-radius: 50%;
                height: 600px;
                margin: auto;
                width: 600px;
            }
            
            h1 {
                color: #495678;
                font-size: 30px;
                margin-top: 20px;
                padding-top: 50px;
                display: block;
                text-align: center;
                text-decoration: none;
            }
            
            a {
                color: #495678;
                font-size: 30px;
                display: block;
                text-align: center;
                text-decoration: none;
                padding-top: 20px;
            }
            
            form {
                background-color: #495678;
                box-shadow: 4px 4px #3d4a65;
                margin: 40px auto;
                padding: 40px 0 30px 40px;
                width: 280px;
            }
            
            .btn {
                outline: none;
                cursor: pointer;
                font-size: 20px;
                height: 45px;
                margin: 5px 0 5px 10px;
                width: 45px;
            }
            
            .btn:first-child {
                margin: 5px 0 5px 10px;
            }
            
            .btn,
            #display,
            form {
                border-radius: 25px;
            }
            
            #display {
                outline: none;
                background-color: #98d1dc;
                box-shadow: inset 6px 6px 0px #3facc0;
                color: #000000;
                font-size: 20px;
                height: 47px;
                text-align: right;
                width: 165px;
                padding-right: 10px;
                margin-left: 10px;
            }
            
            .number {
                background-color: #72778b;
                box-shadow: 0 5px #5f6680;
                color: #dededc;
            }
            
            .number:active {
                box-shadow: 0 2px #5f6680;
                -webkit-transform: translateY(2px);
                -ms-transform: translateY(2px);
                -moz-tranform: translateY(2px);
                transform: translateY(2px);
            }
            
            .operator {
                background-color: #dededc;
                box-shadow: 0 5px #bebebe;
                color: #72778b;
            }
            
            .operator:active {
                box-shadow: 0 2px #bebebe;
                -webkit-transform: translateY(2px);
                -ms-transform: translateY(2px);
                -moz-tranform: translateY(2px);
                transform: translateY(2px);
            }
            
            .other {
                background-color: #e3844c;
                box-shadow: 0 5px #e76a3d;
                color: #dededc;
            }
            
            .other:active {
                box-shadow: 0 2px #e76a3d;
                -webkit-transform: translateY(2px);
                -ms-transform: translateY(2px);
                -moz-tranform: translateY(2px);
                transform: translateY(2px);
            }
        </style>
    </head>

    <body>
        <div class="center">
            <h1>HTML CSS, JavaScript 计算器</h1>
            <a href="https://github.com/guuibayer/simple-calculator" target="_blank"><i class="fa fa-github"></i></a>
            <form name="calculator">
                <input type="button" id="clear" class="btn other" value="C">
                <input type="text" id="display">
                <br>
                <input type="button" class="btn number" value="7" οnclick="get(this.value);">
                <input type="button" class="btn number" value="8" οnclick="get(this.value);">
                <input type="button" class="btn number" value="9" οnclick="get(this.value);">
                <input type="button" class="btn operator" value="+" οnclick="get(this.value);">
                <br>
                <input type="button" class="btn number" value="4" οnclick="get(this.value);">
                <input type="button" class="btn number" value="5" οnclick="get(this.value);">
                <input type="button" class="btn number" value="6" οnclick="get(this.value);">
                <input type="button" class="btn operator" value="*" οnclick="get(this.value);">
                <br>
                <input type="button" class="btn number" value="1" οnclick="get(this.value);">
                <input type="button" class="btn number" value="2" οnclick="get(this.value);">
                <input type="button" class="btn number" value="3" οnclick="get(this.value);">
                <input type="button" class="btn operator" value="-" οnclick="get(this.value);">
                <br>
                <input type="button" class="btn number" value="0" οnclick="get(this.value);">
                <input type="button" class="btn operator" value="." οnclick="get(this.value);">
                <input type="button" class="btn operator" value="/" οnclick="get(this.value);">
                <input type="button" class="btn other" value="=" οnclick="calculates();">
            </form>
        </div>
    </body>

</html>
<script type="text/javascript">
    /* limpa o display */
    document.getElementById("clear").addEventListener("click", function() {
        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);
    };
</script>

 

转载于:https://www.cnblogs.com/xianxianxxx/p/9647292.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
好的,以下是一个简单的 HTML + CSS 实现的计算器,你可以在浏览器中打开查看效果: ```html <!DOCTYPE html> <html> <head> <title>简单计算器</title> <style type="text/css"> body { background-color: #f2f2f2; font-family: Arial, sans-serif; } h1 { text-align: center; margin-top: 50px; } form { margin: 0 auto; width: 300px; background-color: #fff; padding: 20px; border-radius: 10px; box-shadow: 0 0 10px rgba(0,0,0,0.2); } input[type="number"] { width: 100%; padding: 10px; margin-bottom: 10px; border-radius: 5px; border: none; box-shadow: 0 0 5px rgba(0,0,0,0.2); } input[type="submit"] { width: 100%; padding: 10px; background-color: #4CAF50; color: #fff; border: none; border-radius: 5px; cursor: pointer; } input[type="submit"]:hover { background-color: #3e8e41; } </style> </head> <body> <h1>简单计算器</h1> <form> <label for="num1">第一个数:</label> <input type="number" id="num1" name="num1" required><br> <label for="num2">第二个数:</label> <input type="number" id="num2" name="num2" required><br> <label for="operator">运算符:</label> <select id="operator" name="operator"> <option value="+">+</option> <option value="-">-</option> <option value="*">*</option> <option value="/">/</option> </select><br> <input type="submit" value="计算"> </form> </body> </html> ``` 这个计算器只是一个简单的示例,只能进行加减乘除四则运算,如果需要实现更复杂的功能,可以考虑使用 JavaScript 或其他前端框架。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值