吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 3170|回复: 86
收起左侧

[其他] 班级抽奖及随机点名本地版

  [复制链接]
qujianzhan 发表于 2025-3-20 10:16
本帖最后由 qujianzhan 于 2025-3-21 20:35 编辑

本地版:(未加密数据也便于大家根据实际改动)
简介及使用说明:本人利用某AI软件自行设计,为个人使用。文件仅一个单HTLM网页,选择某一种浏览器打开。
1、支持随机选号,支持选1人或多人。
2、支持先选中指定再抽出1人。


360截图20250320101001065.jpg
360截图20250320101027513.jpg
微信图片_20250320100947.png

下载链接.txt

106 Bytes, 下载次数: 198, 下载积分: 吾爱币 -1 CB

免费评分

参与人数 5吾爱币 +5 热心值 +5 收起 理由
嗡嗡32 + 1 + 1 谢谢@Thanks!
situxiyi + 1 + 1 谢谢@Thanks!
fangwusheji + 1 + 1 谢谢@Thanks!
M8850018 + 1 + 1 用心讨论,共获提升!
jamesnow + 1 + 1 热心回复!

查看全部评分

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

zbfdyw 发表于 2025-3-20 10:35
感谢分享,确实不错,提一个小建议,如果号码对应可以有个图片窗口,设置一下号码对应的图像,不知道对不对,希望一起研讨一下。
icpioop 发表于 2025-4-1 10:31
不开新帖了,这个是根据楼主的大概更改了一下,增加了新增人员的功能以及把可同时随机人员变为下拉。下面的名单部分可以自定义名字。效果可以自己复制到记事本改成后缀为html体验。美化方面没有做,还在进一步进行更新。
[HTML] 纯文本查看 复制代码
001
002
003
004
005
006
007
008
009
010
011
012
013
014
015
016
017
018
019
020
021
022
023
024
025
026
027
028
029
030
031
032
033
034
035
036
037
038
039
040
041
042
043
044
045
046
047
048
049
050
051
052
053
054
055
056
057
058
059
060
061
062
063
064
065
066
067
068
069
070
071
072
073
074
075
076
077
078
079
080
081
082
083
084
085
086
087
088
089
090
091
092
093
094
095
096
097
098
099
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>班级随机点名系统</title>
    <style>
        body {
            font-family: 'Microsoft YaHei', sans-serif;
            background-color: #f5f5f5;
            margin: 0;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
         
        h1 {
            color: #333;
            text-align: center;
            margin-bottom: 20px;
        }
         
        .control-panel {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 20px;
            width: 90%;
            max-width: 800px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            align-items: center;
        }
         
        .control-group {
            margin: 10px;
        }
         
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: #555;
        }
         
        input, select, button {
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
        }
         
        button {
            background-color: #4CAF50;
            color: white;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
            font-weight: bold;
            margin: 5px;
        }
         
        button:hover {
            background-color: #45a049;
        }
         
        button:disabled {
            background-color: #cccccc;
            cursor: not-allowed;
        }
         
        #stopBtn {
            background-color: #f44336;
        }
         
        #stopBtn:hover {
            background-color: #d32f2f;
        }
         
        .name-grid {
            display: grid;
            grid-template-columns: repeat(10, 1fr);
            gap: 10px;
            width: 90%;
            max-width: 1000px;
            margin: 20px auto;
        }
         
        .name-box {
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
         
        .name-box:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
         
        .name-box.highlight {
            background-color: #4CAF50;
            color: white;
            font-weight: bold;
            animation: pulse 1s infinite;
        }
         
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
         
        .result-panel {
            margin-top: 20px;
            padding: 15px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            width: 90%;
            max-width: 800px;
            text-align: center;
        }
         
        .result-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }
         
        .result-names {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }
         
        .result-name {
            background-color: #4CAF50;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: bold;
        }
         
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
         
        .modal-content {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            width: 80%;
            max-width: 500px;
        }
         
        .modal-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
        }
         
        .modal-input {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
         
        .modal-buttons {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }
    </style>
</head>
<body>
    <h1>班级随机点名系统</h1>
     
    <div class="control-panel">
        <div class="control-group">
            <label for="countInput">随机选择人数</label>
            <select id="countInput">
                <option value="1">1人</option>
                <option value="2">2人</option>
                <option value="3">3人</option>
                <option value="4">4人</option>
                <option value="5">5人</option>
            </select>
        </div>
         
        <div class="control-group">
            <button id="startBtn">开始点名</button>
            <button id="stopBtn" disabled>停止</button>
        </div>
         
        <div class="control-group">
            <button id="addBtn">添加新成员</button>
        </div>
    </div>
     
    <div class="name-grid" id="nameGrid">
        <!-- 名字方块将通过JavaScript动态生成 -->
    </div>
     
    <div class="result-panel" id="resultPanel" style="display: none;">
        <div class="result-title">本次被点名的同学是:</div>
        <div class="result-names" id="resultNames"></div>
    </div>
     
    <div class="modal" id="addModal">
        <div class="modal-content">
            <div class="modal-title">添加新成员</div>
            <input type="text" id="newNameInput" class="modal-input" placeholder="请输入姓名">
            <div class="modal-buttons">
                <button id="cancelAddBtn">取消</button>
                <button id="confirmAddBtn">确认添加</button>
            </div>
        </div>
    </div>
     
    <script>
        // 初始学生名单 (50人)
        let students = [
            "张三", "李四", "王五", "赵六", "钱七",
            "孙八", "周九", "吴十", "郑十一", "王十二",
            "刘十三", "陈十四", "杨十五", "黄十六", "赵十七",
            "吴十八", "周十九", "徐二十", "孙二十一", "朱二十二",
            "胡二十三", "林二十四", "高二十五", "何二十六", "郭二十七",
            "马二十八", "罗二十九", "梁三十", "宋三十一", "谢三十二",
            "唐三十三", "韩三十四", "曹三十五", "许三十六", "邓三十七",
            "萧三十八", "冯三十九", "曾四十", "程四十一", "蔡四十二",
            "潘四十三", "袁四十四", "于四十五", "董四十六", "余四十七",
            "叶四十八", "蒋四十九", "杜五十", "苏五十一", "魏五十二"
        ];
         
        // 获取DOM元素
        const nameGrid = document.getElementById('nameGrid');
        const startBtn = document.getElementById('startBtn');
        const stopBtn = document.getElementById('stopBtn');
        const countInput = document.getElementById('countInput');
        const resultPanel = document.getElementById('resultPanel');
        const resultNames = document.getElementById('resultNames');
        const addBtn = document.getElementById('addBtn');
        const addModal = document.getElementById('addModal');
        const newNameInput = document.getElementById('newNameInput');
        const cancelAddBtn = document.getElementById('cancelAddBtn');
        const confirmAddBtn = document.getElementById('confirmAddBtn');
         
        // 初始化变量
        let isRunning = false;
        let intervalId = null;
        let selectedCount = 0;
        let selectedNames = [];
        let nameElements = [];
         
        // 初始化名字网格
        function initNameGrid() {
            nameGrid.innerHTML = '';
            nameElements = [];
             
            students.forEach((student, index) => {
                const nameBox = document.createElement('div');
                nameBox.className = 'name-box';
                nameBox.textContent = student;
                nameBox.dataset.index = index;
                nameGrid.appendChild(nameBox);
                nameElements.push(nameBox);
            });
        }
         
        // 开始随机点名
        function startRandomSelection() {
            const count = parseInt(countInput.value);
            selectedCount = count;
            selectedNames = [];
             
            // 重置所有名字方块
            nameElements.forEach(box => {
                box.classList.remove('highlight');
            });
             
            // 隐藏结果面板
            resultPanel.style.display = 'none';
             
            // 禁用开始按钮和下拉框,启用停止按钮
            startBtn.disabled = true;
            countInput.disabled = true;
            stopBtn.disabled = false;
            isRunning = true;
             
            // 开始随机高亮名字
            intervalId = setInterval(() => {
                // 随机选择一个名字高亮
                const randomIndex = Math.floor(Math.random() * students.length);
                 
                // 移除之前的高亮
                nameElements.forEach(box => {
                    box.classList.remove('highlight');
                });
                 
                // 添加新的高亮
                nameElements[randomIndex].classList.add('highlight');
            }, 100);
        }
         
        // 停止随机点名
        function stopRandomSelection() {
            clearInterval(intervalId);
             
            // 获取最终选中的名字
            const highlightedBoxes = document.querySelectorAll('.name-box.highlight');
            selectedNames = Array.from(highlightedBoxes).map(box => box.textContent);
             
            // 如果需要选择多个名字,使用Fisher-Yates算法
            if (selectedCount > 1) {
                // 重置高亮
                nameElements.forEach(box => {
                    box.classList.remove('highlight');
                });
                 
                // 创建一个学生索引数组
                let indices = Array.from({length: students.length}, (_, i) => i);
                 
                // Fisher-Yates洗牌算法
                for (let i = indices.length - 1; i > 0; i--) {
                    const j = Math.floor(Math.random() * (i + 1));
                    [indices[i], indices[j]] = [indices[j], indices[i]];
                }
                 
                // 取前selectedCount个作为结果
                selectedNames = indices.slice(0, selectedCount).map(i => students[i]);
                 
                // 高亮选中的名字
                selectedNames.forEach(name => {
                    const index = students.indexOf(name);
                    if (index !== -1) {
                        nameElements[index].classList.add('highlight');
                    }
                });
            }
             
            // 显示结果
            displayResults();
             
            // 启用开始按钮和下拉框,禁用停止按钮
            startBtn.disabled = false;
            countInput.disabled = false;
            stopBtn.disabled = true;
            isRunning = false;
        }
         
        // 显示结果
        function displayResults() {
            resultNames.innerHTML = '';
             
            selectedNames.forEach(name => {
                const nameElement = document.createElement('div');
                nameElement.className = 'result-name';
                nameElement.textContent = name;
                resultNames.appendChild(nameElement);
            });
             
            resultPanel.style.display = 'block';
        }
         
        // 添加新成员
        function addNewMember() {
            addModal.style.display = 'flex';
            newNameInput.focus();
        }
         
        // 确认添加新成员
        function confirmAddMember() {
            const newName = newNameInput.value.trim();
             
            if (newName) {
                students.push(newName);
                initNameGrid();
                newNameInput.value = '';
                addModal.style.display = 'none';
            }
        }
         
        // 事件监听
        startBtn.addEventListener('click', startRandomSelection);
        stopBtn.addEventListener('click', stopRandomSelection);
        addBtn.addEventListener('click', addNewMember);
        cancelAddBtn.addEventListener('click', () => {
            addModal.style.display = 'none';
            newNameInput.value = '';
        });
        confirmAddBtn.addEventListener('click', confirmAddMember);
         
        // 初始化
        initNameGrid();
    </script>
</body>
</html>
祥昊 发表于 2025-3-20 10:17
zhiyun616 发表于 2025-3-20 10:17
你们怎么都这么聪明!
zhong2333 发表于 2025-3-20 10:17
感谢楼主分享
yemind 发表于 2025-3-20 10:21
陪你走过一切的美好
mrdzf 发表于 2025-3-20 10:22
感谢分享!!!
mmh1 发表于 2025-3-20 10:37
AI设计就是方便,基本都不用知道语法,尤其是简单的,都让AI调就行了!像计算器类的,都是一次成型
 楼主| qujianzhan 发表于 2025-3-20 10:37
zbfdyw 发表于 2025-3-20 10:35
感谢分享,确实不错,提一个小建议,如果号码对应可以有个图片窗口,设置一下号码对应的图像,不知道对不对 ...

你是说指着号码出现图像吗
 楼主| qujianzhan 发表于 2025-3-20 10:39
mmh1 发表于 2025-3-20 10:37
AI设计就是方便,基本都不用知道语法,尤其是简单的,都让AI调就行了!像计算器类的,都是一次成型

是的,主要提高工作效率吧
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

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

GMT+8, 2025-4-4 17:03

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

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