js实现随机数小游戏
网络编程 2021-07-04 15:51www.168986.cn编程入门
这篇文章主要为大家详细介绍了js实现随机数小游戏,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
抛出随机数实现一个“谁取餐的小游戏”,供大家参考,具体内容如下
1、HTML结构代码如下
<div class="mask"> <div class="contents"> <div class="head"> <p>谁去拿外卖</p> <a href="#" id="close">X</a> </div> <div class="cont-wapper"> <div class="cont-inner"> <h2></h2> <button></button> <div class="sign">随机到最小数字的人去拿外卖</div> <ul> <li class="takeout-list">扔出了一个2</li> <li>扔出了一个3</li> </ul> </div> </div> </div> </div>
2、css样式代码如下
.mask { position: fixed;left: 0;: 0; width: 100%;height: 100%; background: rgba(0, 0, 0, 0.5); } .contents { position: absolute;: 54px;left: 50%; width: 360px;border: 1px solid gray;background: white; border-radius: 5px;transform: translateX(-50%); } .head { box-sizing: border-box;width: 100%;height: 44px; padding: 10px;border-bottom: 1px solid #eee; } .head p { float: left; } .head a { float: right;width: 16px; line-height: 24px;color: #c; } .head a:hover { color: blue; } .cont-wapper { width: 300px;color: #555; padding: 15px 30px;margin: 0 auto; } .cont-inner { font-size: 12px;background: #dbf0fa; padding-: 15px;margin: 0 auto; margin-bottom: 10px;box-shadow: 1px 1px 2px #ddd; } .cont-inner h2 { width: 186px;height: 188px;margin: 0 auto; background: url('../../Content/img1/ico.png') 0 -120px no-repeat; } .cont-inner button { display: block;cursor: pointer;/箭头变手/ outline:none;/去掉浏览器默认的外边框/ width: 271px;height: 40px;border: 0; background: url('../../Content/img1/ico.png') 0 0 no-repeat; margin: -45px auto 15px; } .sign { position: relative;text-align: center; color: #777;margin-bottom: 10px; } /after伪元素在元素之后添加内容/ /content 属性与 :before 及 :after 伪元素配合使用,来插入生成内容/ .sign::after { content: '';display: block; position: absolute;width: 40px;height: 7px; background: #c;right: 16px;: 5px; } /before伪元素在元素之前添加内容。/ /content 属性与 :before 及 :after 伪元素配合使用,来插入生成内容/ .sign::before { content: '';display: block;position: absolute; width: 40px;height: 7px; background: #c;left: 16px;: 5px; } .cont-inner ul { height: 180px;margin: 0 10px; padding: 5px 5px 0 5px; overflow: hidden;/隐藏滚动条/ } .cont-wapper li.takeout-list { color: #fe5a23;font-weight: 600; height: 19px;line-height: 19px; background: url('../../Content/img1/ico.png') 0 -320px no-repeat; } .cont-wapper li { padding-left: 5px; }
3、js代码获取元素
var button = document.getElementsByTagName('button')[0];//按钮 var ullist = document.getElementsByTagName('ul')[0]; var arrList = [];//创建数组 var mask = document.getElementsByClassName('mask')[0]; var text = document.getElementsByClassName('contents')[0]; var min = NaN;//最小值 var index;//索引值
4、js代码实现鼠标滑过的时候背景的动态变化
//鼠标按下事件 button.onmousedown = function () { this.style.backgroundPosition = '0 ' + (-80) + 'px'; cteatNumer()//调用生成数组的方法 //鼠标放开事件 this.onmouseup = function () { this.style.backgroundPosition = '0 ' + (-40) + 'px'; } }; //鼠标移入事件 button.onmouseenter = function () { this.style.backgroundPosition = '0 ' + (-40) + 'px'; //鼠标移出事件 this.onmouseleave = function () { this.style.backgroundPosition = '0 ' + 0 + 'px'; } };
5、js代码实现在数组输出最小值
//在数组中输出最小值 Array.prototype.min = function () { var min = this[0];//目前生成的数值 var len = this.length;//数组目前的长度 for (var i = 1; i < len; i++) { if (this[i] < min) { min = this[i]; } } return min; }
6、js代码实现取出数组的最小值
//数组取最小值 function cteatNumer() { var num = Math.floor(Math.random() 100);//0-100之间随机生成一个精准的实数 if (min == num) {//判断是否有最小值重复 cteatNumer();//有重复就重新生成 return; } arrList.push(num);//在数组最狼蚁网站SEO优化显示生成的值 if (arrList.length > 11) {//数组长度超出11 if (num > min && index == 0) {//当最小值索引值为0时 arrList.splice(1, 1);//从数组索引值为1开始,删除第2个数值 } else { arrList.shift();//数组往上移动 } } min = arrList.min();//最小值 index = arrList.indexOf(min);//最小值在数组中的索引 refurbishDom(arrList, index);//调用refurbishDom方法 }
7、用for循环遍历当前数组的长度
function refurbishDom(arr, index) { ullist.innerHTML = '';//清空ul所有的数值 var len = arr.length;//获取当前数组的长度 for (var i = 0; i < len; i++) {//显示对应索引的数值 ullist.innerHTML += '<li>' + '扔出了一个' + arr[i] + '</li>'; } //在ul数组中动态指定最小值 ullist.getElementsByTagName('li')[index].className = 'takeout-list'; }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持狼蚁SEO。
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程