JS项目(制作随机选号页面)

JS项目

  • 假定班上有 60 名同学,现制作一个提问选择器,如下图所示。单击“开始”按钮在页面随机显示 1 ~ 60 的学号,单击“停止”按钮在页面显示选中学号。

  • 要求:
    (1) 页面样式参数设置:
    1.1、输出框的高度和宽度分别为:500px 和 600px
    1.2 、数字居中显示,字体大小:360px
    (2) 随机数字产生的时间间隔为 60ms
    (3) 显示框默认值为 0

代码、效果图附下:(直接复制就能用)

<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8" />
    <title>随机选号器</title>
    <link rel="stylesheet" href="css/change.css" type="text/css" />
    <style type="text/css">
        .text1 {
            height: 500px;
            width: 600px;
            font-size: 360px;
            text-align: center;
        }

        .text2 {
            position: relative;
            top: 40px;
            left: -90px;
            height: 40px;
            width: 100px;
        }

        .text3 {
            position: relative;
            top: 40px;
            left: 90px;
            height: 40px;
            width: 100px;
        }

        div {
            text-align: center;
        }
    </style>
</head>
<script>
    var timer;
    //开始
    function startText() {
        var num = Math.floor(Math.random() * 61); 
        document.getElementById("myText").value = num;
        timer = setTimeout("startText()", 60);	
    }
    //暂停
    function stopText() {
        clearTimeout(timer);
    }

</script>
<body>
    <div>
        <form>
            <input type="text" class="text1" value="0" id="myText" /><br />
            <input type="button" class="text2" value="开始" onclick="startText()" />
            <input type="button" class="text3" value="停止" onclick="stopText()" />
        </form>
    </div>
    <script type="text/javascript" src="js/p1.js"></script>
</body>
</html>

效果图如下:

在这里插入图片描述
在这里插入图片描述

评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

阿勋啦

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值