reactjs实现一个苹果手机计算器效果代码

代码语言:html

所属分类:布局界面

代码描述:reactjs实现一个苹果手机计算器效果代码

代码标签: 苹果 手机 计算器 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=400, height=600, initial-scale=0.8, maximum-scale=1">
    <script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/babel.min.js"></script>

    <link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Roboto:100'>

    <style>
        html {
            box-sizing: border-box;
        }
        *, *:before, *:after {
            box-sizing: inherit;
        }

        body {
            margin: 0;
            font: 100 14px 'Roboto';
        }

        button {
            display: block;
            background: none;
            border: none;
            padding: 0;
            font-family: inherit;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            cursor: pointer;
            outline: none;

            -webkit-tap-highlight-color: rgba(0,0,0,0);
        }

        button:active {
            box-shadow: inset 0px 0px 80px 0px rgba(0,0,0,0.25);
        }

        #wrapper {
            height: 100vh;

            display: flex;
            align-items: center;
          .........完整代码请登录后点击上方下载按钮下载查看

网友评论0