欢迎来到代码驿站!

JavaScript代码

当前位置:首页 > 网页前端 > JavaScript代码

js实现简单的抽奖系统

时间:2022-10-08 12:53:48|栏目:JavaScript代码|点击:

一个用js编写的简单的抽奖系统,供大家参考,具体内容如下

效果图如图所示:字节带闪动,点击开始,可进行抽奖,并且按钮变为结束按钮,然后点击结束按钮,可以结束,并抽奖成功。

代码如下:

<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title>抽奖</title>
        <style type="text/css">
            table {
                width: 400px;
                height: 400px;
                border: gray solid 1px;
                border-collapse: collapse;
                text-align: center;
                margin: 0 auto;
                margin-top: 100px;
            }
            
            .td {
                border: gray solid 1px;
                background-color: lightskyblue;
            }
            
            .td1 {
                border: gray solid 1px;
                background-color: red;
            }
            
            td:hover {
                background-color: cornflowerblue;
            }
            
            div {
                width: 100px;
                height: 40px;
                margin-left: auto;
                margin-right: auto;
                margin-top: 20px;
            }
            
            #btn {
                width: 100px;
                height: 40px;
            }
            #blink{
                width: 300px;
                height: 90px;
                margin-left: auto;
                margin-right: auto;
                margin-top: 20px;
                font-size: 70px;
                font: "微软雅黑";
                text-align: center;
                font-weight: bold;
            }
            
        </style>
    </head>

    <body>
        <div id="blink">
            抽  奖 了
        </div>
        <table>
        </table>
        <div>
            <input type="button" id="btn" value="开始" onclick="click1()" />
        </div>

    </body>
    <script type="text/javascript">
        /*利用二维数据+dom操作*/
        var interval = 0;
        var table = document.querySelector("table");
        var arr = [
            [1, 2, 3, 4, 5],
            [6, 7, 8, 9, 10],
            [11, 12, 13, 14, 15],
            [16, 17, 18, 19, 20],
            [21, 22, 23, 24, 25]
        ]
        for(var i in arr) {
            var tr = table.insertRow();
            for(var j in arr[i]) {
                var td = tr.insertCell();
                td.setAttribute("class", "td");
                td.innerHTML = arr[i][j];
            }
        }
        //获取所有的td标签数组
        var count = document.querySelectorAll("td");

        function click1() {
            //找到当前按钮
            var btn = document.querySelector("#btn");
            //判断按钮状态
            if(btn.value == '开始') {
                //点解后修改背景颜色
                btn.style.backgroundColor = "red";
                //修改按钮文字
                btn.value = "结束";
                //停止继续调用setInterval函数进行抽奖
                clearInterval(interval);
                interval = setInterval(function() {
                    var rad = Math.floor(Math.random() * 25);
                    for(var i = 0; i < count.length; i++) {
                        //通过遍历来重新给表设置样式
                        count[i].setAttribute("class", "td");
                        if(rad === i) {
                            //给抽到的人改变样式
                            count[i].setAttribute('class', 'td1');
                        }
                    }
                }, 100)

            } else {
                //设置背景颜色
                btn.style.backgroundColor = "gainsboro";
                //修改按钮文字
                btn.value = "开始";
                clearInterval(interval);
            }
        }

        function changeColor() {
            var color = "#f00|#0f0|#00f|#880|#808|#088|yellow|green|blue|gray";
            color = color.split("|");
            document.getElementById("blink").style.color = color[parseInt(Math.random() * color.length)];
        }
        setInterval("changeColor()", 200);
    </script>

</html>

上一篇:JavaScript实现京东购物放大镜和选项卡效果的方法分析

栏    目:JavaScript代码

下一篇:微信小程序实现点击按钮后修改颜色

本文标题:js实现简单的抽奖系统

本文地址:http://www.codeinn.net/misctech/215744.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有