吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 64|回复: 0
收起左侧

[其他原创] 抽奖工具

[复制链接]
公主月月 发表于 2024-11-21 15:11
效果,根据号码进行随机排序
image.png
代码如下:
[HTML] 纯文本查看 复制代码
<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>号码抽奖游戏</title>
    <style>
        body {
            font-family: 'Arial', sans-serif;
            text-align: center;
            padding: 50px;
            background-color: #f7f7f7;
        }
        .container {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            display: inline-block;
        }
        h1 {
            color: #333;
        }
        input[type="number"] {
            padding: 10px;
            margin: 5px;
            border: 1px solid #ddd;
            border-radius: 4px;
            width: 60px;
        }
        button {
            padding: 10px 20px;
            margin: 20px 0;
            border: none;
            border-radius: 4px;
            background-color: #5cb85c;
            color: white;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        button:hover {
            background-color: #4cae4c;
        }
        #result {
            font-size: 2em;
            margin-top: 20px;
            transition: transform 1s;
            display: inline-block;
        }
        .spin {
            animation: spin 5s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>号码抽奖游戏</h1>
        <input type="number" id="num1" placeholder="输入第一个号码" required>
        <input type="number" id="num2" placeholder="输入第二个号码" required>
        <input type="number" id="num3" placeholder="输入第三个号码" required>
        <button id="drawButton">抽奖</button>

        <div id="result"></div>
    </div>

    <script>
        document.getElementById('drawButton').addEventListener('click', function() {
            const num1 = parseInt(document.getElementById('num1').value);
            const num2 = parseInt(document.getElementById('num2').value);
            const num3 = parseInt(document.getElementById('num3').value);

            if (isNaN(num1) || isNaN(num2) || isNaN(num3)) {
                alert("请确保输入的是有效的数字!");
                return;
            }

            const numbers = [num1, num2, num3];
            const currentDate = new Date();
            const seed = currentDate.getTime(); // 使用当前时间作为随机种子
            const shuffledNumbers = shuffle(numbers, seed);

            const resultDiv = document.getElementById('result');
            resultDiv.textContent = ''; // 清除之前的结果
            resultDiv.classList.add('spin'); // 添加旋转效果

            setTimeout(() => {
                resultDiv.classList.remove('spin'); // 移除旋转效果
                resultDiv.textContent = '抽奖结果: ' + shuffledNumbers.join(', ');
            }, 5000); // 5秒后显示结果
        });

        function shuffle(array, seed) {
            let m = array.length, t, i;
            let s = new Date().getTime() ^ seed; // 使用当前时间与种子结合作为随机种子
            while (0 !== m) {
                // Pick a remaining element…
                i = Math.floor(Math.random() * m--);
                // And swap it with the current element.
                t = array[m];
                array[m] = array[i];
                array[i] = t;
                //适度“洗牌”以增加随机性
                s = (s + array[m] + array[i]) % 31;
            }
            return array;
        }
    </script>
</body>
</html>


代码复制粘贴,保存格式为 .html 点击即可运行

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-21 16:55

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表