简单的计算器

代码语言:html

所属分类:其他

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

<!DOCTYPE html>
<html>
<head>
    <title>计算器</title>
    <meta charset="utf-8">
    <style>
        #view {
            text-align: right;
            padding: 0px 5px;
            border-radius: 10px;
            margin: 12px 7px;
            width: 370px;
            height: 75px;
            border: 2px solid #ccc;
            font-size: 2em;
            color: #999;
            outline: none;
        }
        #btn {
            border-radius: 20px;
            width: 400px;
            height: 580px;
            background-color: #999999;
            margin: 0 auto;
        }
        ul {
            padding: 0px;
            margin: 0px;
            margin-left: 17px;
        }
        ul li {
            font-weight: bold;
            background-color: #cebfbf;
            font-size: 2em;
            border-radius: 20px;
            margin: 4px 4px 4px 4px;
            line-height: 86px;
            text-align: center;
            width: 84px;
            height: 84px;
            list-style: none;
            float: left;
            box-shadow: 2px 2px 1px #555;
        }
        ul li:hover {
            color: #fff;
            background-color: #01baff;
            box-shadow: -2px -2px 1px #555;
        }
    </style>
</head>
<body>

    <div.........完整代码请登录后点击上方下载按钮下载查看

网友评论0