首页 > 其他分享 >Js函数:计算器、复选框

Js函数:计算器、复选框

时间:2022-11-20 15:35:47浏览次数:54  
标签:translateY color 2px transform value Js 计算器 复选框 display

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <script>
        function myFunction()
        {
            alert("Hello World!");
        }
        //才参数的函数
        //如果函数中带有return就会停在return的位置,并且给调用方进行返回值
        function myFunctionT(a,b){
            alert(a+","+b);
            return a;
        }
    </script>
    <style>
        * {
            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: #dededc;
            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>
        <!--示例-->
        <button onclick="myFunction()">点我</button>
        <button onclick="myFunctionT('Bob','Builder')">点击这里</button>
        <!--简单的计算器-->
        <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" onclick="get(this.value);">
                    <input type="button" class="btn number" value="8" onclick="get(this.value);">
                    <input type="button" class="btn number" value="9" onclick="get(this.value);">
                    <input type="button" class="btn operator" value="+" onclick="get(this.value);">
                        <br>
                    <input type="button" class="btn number" value="4" onclick="get(this.value);">
                    <input type="button" class="btn number" value="5" onclick="get(this.value);">
                    <input type="button" class="btn number" value="6" onclick="get(this.value);">
                    <input type="button" class="btn operator" value="*" onclick="get(this.value);">
                        <br>
                    <input type="button" class="btn number" value="1" onclick="get(this.value);">
                    <input type="button" class="btn number" value="2" onclick="get(this.value);">
                    <input type="button" class="btn number" value="3" onclick="get(this.value);">
                    <input type="button" class="btn operator" value="-" onclick="get(this.value);">
                        <br>
                    <input type="button" class="btn number" value="0" onclick="get(this.value);">
                    <input type="button" class="btn operator" value="." onclick="get(this.value);">
                    <input type="button" class="btn operator" value="/" onclick="get(this.value);">            
                    <input type="button" class="btn other" value="=" onclick="calculates();">
                </form>
            </div>
            <script>
                /* limpa o display */ 
                /*事件监听addEventListener,当clear被点击,就执行下面的方法清空input中的值*/
                document.getElementById("clear").addEventListener("click", function() {
                    document.getElementById("display").value = "";
                });
                /* recebe os valores */
                function get(value) {
                    document.getElementById("display").value += value; 
                } 
                
                /* calcula */
                /*js中eval对算术表达式进行求值*/
                function calculates() {
                    var result = 0;
                    result = document.getElementById("display").value;
                    document.getElementById("display").value = "";
                    document.getElementById("display").value = eval(result);
                };
            </script>
       //fuxuankuang
看书:<input type="checkbox" name="checkbox" value=1><br> 写字:<input type="checkbox" name="checkbox"value=2><br> 打一下:<input type="checkbox" name="checkbox"value=3><br> 玩游戏:<input type="checkbox" name="checkbox"value=4><br> <input type="button" value="全选" onclick="allcheck(this)"> <script> var checkAll = false; function allcheck(element){ console.log(element); checkAll = !checkAll; console.log(checkAll); //改变了input的值 element.value=checkAll?"全不选":"全选"; console.log(element.value); let inputs = document.getElementsByName('checkbox') for( var index in inputs){ inputs[index].checked = checkAll; } } </script> </body> </html>

 

标签:translateY,color,2px,transform,value,Js,计算器,复选框,display
From: https://www.cnblogs.com/H-Yan/p/16908583.html

相关文章

  • JS作用域和事件
    <!DOCTYPEhtml><html><head><metacharset="utf-8"><title></title></head><body><!--作用域与事件--><!--......
  • JSP知识
    资源https://blog.csdn.net/weixin_48112109/article/details/124764545 1.JSP介绍JSP的全称是JavaServerPages,即Java的服务器页面JSP的主要作用是代替Servlet程......
  • PHP解析WAYOS 路由 JSON数据
    <?php@header("content-type:text/html;charset=UTF-8");if(isset($_REQUEST['p'])){$p=$_REQUEST['p'];}else{$p='s';}if(isset($_REQUEST['d'])){......
  • P4047 [JSOI2010]部落划分 题解
    最小生成树做法之Kruskal算法流程(详细分析请看代码注释):1.初始化并查集并查集模板不过多解释,还不懂请参阅并查集-OIWiki。每个节点的祖先最开始都是自己。还有......
  • cJson 学习笔记
    cJson学习笔记一、前言思考这么一个问题:对于不同的设备如何进行数据交换?可以考虑使用轻量级别的JSON格式。那么需要我们手写一个JSON解析器吗?这大可不必,因为已经有......
  • JSP、JavaBean
    JSP什么是JSPJavaServerPages:java服务器端页面,也和Servlet一样,用于开发动态Web技术!最大的特点:写JSP就像在写HTML区别:HTML只给用户提供静态的数据JSP页面中可以......
  • vue+JS 获取当前实时时间
    <template><divclass="container"><divclass="header"><h1>数据可视化-Echarts</h1><divclass="show-time">当前时间: {{......
  • 使用hardhat/ethers.js调用已经存在的合约
    使用hre:https://hardhat.org/hardhat-runner/docs/advanced/hardhat-runtime-environmentHardhatRuntimeEnvironment里边通过hardhat-ethers插件注入了一个ethers实......
  • JsonResult
    https://github.com/dotnet/aspnetcore/blob/39f0e0b8f40b4754418f81aef0de58a9204a1fe5/src/Mvc/Mvc.Core/src/JsonResult.cs#L13//Licensedtothe.NETFoundationu......
  • 【JS】查验电话号码(fCC)
    题目要求查验电话号码是否输入正确,总结来说,需要满足以下条件:号码中的数字应该在10-13个之间不包含()-以外的符号()要完整可以有空格如果最前面加了国家编号,限定编号......