您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關JavaScript如何實現班級抽簽小程序的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
項目中假設一個班只有三十個人
<div class="outerContainer"> <div class="question">請問你要抽幾個xx班的小寶貝呢?</div> <div class="number"> <input type="text" value="請輸入需要的人數" onblur="if (this.value == '') {this.value = '請輸入需要的人數';this.style.color = '#999';}" onfocus="if (this.value == '請輸入需要的人數') {this.value = '';this.style.color = '#424242';}"> </div> <div class="btnWrapper"> <button>開始抽簽</button> </div> <div class="viewDiv"></div> <div class="foot">制作者:chenyu-max</div> </div>
.outerContainer { margin-top: 100px; } .question { margin-top: 30px; width: 100%; height: 50px; line-height: 50px; font-size: 25px; transition: all .3s linear; /* 顏色變化的時候,會有個漸變的效果 */ text-align: center; } .number { margin-top: 30px; display: block; left: 200px; text-align: center; } .number input { height: 30px; font-size: 20px; line-height: 30px; } .btnWrapper { margin-top: 30px; width: 100%; height: 30px; text-align: center; } .btnWrapper button { outline: none; color: rgb(233, 8, 8); cursor: pointer; border-radius: 15px; width: 100px; height: 25px; line-height: 19px; } .viewDiv { margin: 20px auto; width: 900px; height: 300px; text-align: center; font-size: 30px; line-height: 50px; border: 1px solid black; } .foot { margin: 0 auto; text-align: center; }
獲取dom元素
var input = document.getElementsByTagName('input')[0]; var viewDiv = document.getElementsByClassName('viewDiv')[0]; var btn = document.getElementsByTagName('button')[0]; var question = document.getElementsByClassName('question')[0];
其余變量
var arr = []; // 存放抽取處的學號 var count = 0; // 計數器,用以 question 的顏色修改
question的顏色變化
setInterval(function() { var temp = count % 6; switch (temp) { case 0: question.style.color = 'red'; break; case 1: question.style.color = 'green'; break; case 2: question.style.color = 'blue'; break; case 3: question.style.color = 'grey'; break; case 4: question.style.color = 'purple'; break; case 5: question.style.color = 'black'; break; default: break; } count++; }, 700);
抽獎邏輯
btn.onclick = function() { // 檢查輸入的內容是否是是1~30人 // 若是班級人數不止三十人,改成 input.value < 班級人數 + 1 var check = (function() { if (input.value > 0 && input.value < 31) { return true; } else { return false; } }()); // 如果輸入的是正確的,那么進行抽簽 if (check) { var num = input.value; arr = []; for (var i = 0; arr.length < num; i++) { // 生成1 ~ 30 的隨機數 // 需要更改人數,直接修改 乘號后面的 30 未你們班需要的人數即可 var temp = Math.floor(Math.random() * 30 + 1); // 1 ~ 30 var flag = true; arr.forEach(function(value) { // 遍歷數組,防止生成的隨機數和已有的數字重復 if (value == temp) { flag = false; } }) if (flag) { arr.push(temp); } } // 將抽出的人數的學號進行升序排序 arr.sort(function(a, b) { return a - b; }) var str = arr.join(", "); viewDiv.innerHTML = " <span style='color : red'>恭喜以下小可愛/帥哥 被抽中!</span> </br> " + str; } else { // 若不是,則輸出錯誤提示 // 人數可以修改 viewDiv.innerHTML = "<span style='color : red'>請輸入正確的人數(1 ~ 30)哦</span>"; } }
增加功能
document.onkeydown = function(e) { // 摁下回車鍵 觸發 btn 的onclick事件 if (e.keyCode == 13) { btn.onclick(); } }
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>給xx班小寶貝來個抽簽</title> <link rel="icon" href=""> <style> .outerContainer { margin-top: 100px; } .question { margin-top: 30px; width: 100%; height: 50px; line-height: 50px; font-size: 25px; transition: all .3s linear; text-align: center; } .number { margin-top: 30px; display: block; left: 200px; text-align: center; } .number input { height: 30px; font-size: 20px; line-height: 30px; } .btnWrapper { margin-top: 30px; width: 100%; height: 30px; text-align: center; } .btnWrapper button { outline: none; color: rgb(233, 8, 8); cursor: pointer; border-radius: 15px; width: 100px; height: 25px; line-height: 19px; } .viewDiv { margin: 20px auto; width: 900px; height: 300px; text-align: center; font-size: 30px; line-height: 50px; border: 1px solid black; } .foot { margin: 0 auto; text-align: center; } </style> </head> <body> <div class="outerContainer"> <div class="question">請問你要抽幾個xx班的小寶貝呢?</div> <div class="number"> <input type="text" value="請輸入需要的人數" onblur="if (this.value == '') {this.value = '請輸入需要的人數';this.style.color = '#999';}" onfocus="if (this.value == '請輸入需要的人數') {this.value = '';this.style.color = '#424242';}"> </div> <div class="btnWrapper"> <button>開始抽簽</button> </div> <div class="viewDiv"></div> <div class="foot">制作者:chenyu-max</div> </div> <script> var input = document.getElementsByTagName('input')[0]; var viewDiv = document.getElementsByClassName('viewDiv')[0]; var btn = document.getElementsByTagName('button')[0]; var question = document.getElementsByClassName('question')[0]; var arr = []; // 存放抽取處的學號 var count = 0; // 計數器,用以question 的顏色修改器 setInterval(function() { var temp = count % 6; switch (temp) { case 0: question.style.color = 'red'; break; case 1: question.style.color = 'green'; break; case 2: question.style.color = 'blue'; break; case 3: question.style.color = 'grey'; break; case 4: question.style.color = 'purple'; break; case 5: question.style.color = 'black'; break; default: break; } count++; }, 700); document.onkeydown = function(e) { // 摁下回車鍵 觸發 btn 的onclick事件 if (e.keyCode == 13) { btn.onclick(); } } btn.onclick = function() { // 檢查輸入的內容是否是是1~30人 // 若是班級人數不止三十人,改成 input.value < 班級人數 + 1 var check = (function() { if (input.value > 0 && input.value < 31) { return true; } else { return false; } }()); // 如果輸入的是正確的,那么進行抽簽 if (check) { var num = input.value; arr = []; for (var i = 0; arr.length < num; i++) { // 生成1 ~ 30 的隨機數 // 需要更改人數,直接修改 乘號后面的 30 未你們班需要的人數即可 var temp = Math.floor(Math.random() * 30 + 1); // 1 ~ 30 var flag = true; arr.forEach(function(value) { // 遍歷數組,防止生成的隨機數和已有的數字重復 if (value == temp) { flag = false; } }) if (flag) { arr.push(temp); } } // 將抽出的人數的學號進行升序排序 arr.sort(function(a, b) { return a - b; }) var str = arr.join(", "); viewDiv.innerHTML = " <span style='color : red'>恭喜以下小可愛/帥哥 被抽中!</span> </br> " + str; } else { // 若不是,則輸出錯誤提示 // 人數可以修改 viewDiv.innerHTML = "<span style='color : red'>請輸入正確的人數(1 ~ 30)哦</span>"; } } </script> </body> </html>
1.JavaScript主要用來向HTML頁面添加交互行為。 2.JavaScript可以直接嵌入到HTML頁面,但寫成單獨的js文件有利于結構和行為的分離。 3.JavaScript具有跨平臺特性,在絕大多數瀏覽器的支持下,可以在多種平臺下運行。
感謝各位的閱讀!關于“JavaScript如何實現班級抽簽小程序”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。