js实现一个倒计时数学运算答题计算结果效果代码

代码语言:html

所属分类:其他

代码描述:js实现一个倒计时数学运算答题计算结果效果代码

代码标签: 倒计时 数学 运算 答题 计算 结果 效果

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

<!doctype html>
<html>
<head>
    <meta charset="UTF-8">
    <title>js数学计算题问答</title>

    <style type="text/css">
        body {
            font-family: Dunkin,"开心软件甜蜜蜜简体","Segoe","Segoe UI","微软雅黑",sans-serif;
            font-size: 30px;
            background-color: #fff;
        }

        input, button {
            font-family: Dunkin,"开心软件甜蜜蜜简体","Segoe","Segoe UI","微软雅黑",sans-serif;
            font-size: 20px;
        }

        .title {
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            background-color: #fff;
            z-index: 3;
        }

        #ti {
            font-family: Dunkin,"Segoe","Segoe UI",sans-serif;
            font-size: 50px;
            background-color: #fff;
        }
    </style>

</head>
<body>

    <div class="title" id="title">
        <br><br><h1 align="center">趣味数学计算</h1>
        <center><input type="button" value="答题吧!" onclick="$('title').style.display='none';dati()"></center>
    </div>

    <center>
        <br>
        <h2 id="ti">17+12</h2><br>
        <input type="text" id="texts"><br><br><input type="button" value="确定" onclick="ok()">
        <br><br>
        答对<span id="att1">0</span>题&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;打错<span id="att2">0</span>题<br><span id=&quo.........完整代码请登录后点击上方下载按钮下载查看

网友评论0