用JS来实现九宫格抽奖的功能

简介: 用JS来实现九宫格抽奖的功能

博主最近有点忙哈 一直在搞项目 看到粉丝私信一直在催更 我这边也是一有空就会开始分享啦 希望大家多多海涵~

接下来就是大家喜闻乐见的代码环节

首先是HTML部分:

<div class="biggest_box">
      <div class="smaller_box">
        <p>商品一</p>
      </div>
      <div class="smaller_box_two">
        <p>商品二</p>
      </div>
      <div class="smaller_box_three">
        <p>商品三</p>
      </div>
      <div class="smaller_box_four">
        <p>商品四</p>
      </div>
      <div class="smaller_box_five">
        <p>商品五</p>
      </div>
      <div class="smaller_box_six">
        <p>商品六</p>
      </div>
      <div class="smaller_box_seven">
        <p>商品七</p>
      </div>
      <div class="smaller_box_eight">
        <p>没抽到</p>
      </div>
      <button class="smaller_box_nine" style="border: none;">
        <p>点击开冲</p>
      </button>
    </div>

其次是css样式

这里需要注意的是 因为代码都是从上往下解析的 所以按顺序写的格式如果开始执行抽奖的话顺序会乱掉 所以这里就要用到浮动的方法就可以很简单的解决掉这个问题

按照顺序分别定位到合适位置  例如:

   1 2 3

   8    4

   7 6 5

* {
        margin: 0;
        padding: 0;
      }
      .biggest_box {
        width: 500px;
        height: 500px;
        border: 2px pink solid;
        margin-left: 20%;
        margin-top: 10%;
        position: relative;
        color: #ffffff;
      }
      .smaller_box {
        width: 30%;
        height: 30%;
        position: absolute;
        top: 2%;
        background-color: #0000ff;
        left: 2%;
        font-size: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .smaller_box_two {
        width: 30%;
        height: 30%;
        position: absolute;
        top: 2%;
        background-color: #0000ff;
        left: 35%;
        font-size: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .smaller_box_three {
        width: 30%;
        height: 30%;
        position: absolute;
        top: 2%;
        background-color: #0000ff;
        left: 68%;
        font-size: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .smaller_box_four {
        width: 30%;
        height: 30%;
        position: absolute;
        top: 35%;
        background-color: #0000ff;
        left: 68%;
        font-size: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .smaller_box_five {
        width: 30%;
        height: 30%;
        position: absolute;
        top: 68%;
        background-color: #0000ff;
        left: 68%;
        font-size: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .smaller_box_six {
        width: 30%;
        height: 30%;
        position: absolute;
        top: 68%;
        background-color: #0000ff;
        left: 35%;
        font-size: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .smaller_box_seven {
        width: 30%;
        height: 30%;
        position: absolute;
        top: 68%;
        background-color: #0000ff;
        left: 2%;
        font-size: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .smaller_box_eight {
        width: 30%;
        height: 30%;
        position: absolute;
        top: 35%;
        background-color: #0000ff;
        left: 2%;
        font-size: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .smaller_box_nine {
        width: 30%;
        height: 30%;
        position: absolute;
        top: 35%;
        background-color: #ff00ff;
        left: 35%;
        font-size: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

最后就是实现JS的功能咯:

创建全局变量 time 初始为 300 ,

获取奖品列表,创建函数,在函数内判断 a 是否小于 7 (奖品的数量 - 1)

如果小于7,执行 k++ 让上一个奖品也就是 k - 1 下标对应的奖品颜色再回归为蓝色

让当前选中的奖品也就是 k 下标对应的奖品背景颜色为红色

如果不小于7,表示 k 不能再自增了,需要重新初始为 0 ,

让最后一件奖品 (奖品的数量 - 1 的下标对应的奖品)的背景颜色为蓝色,

let biggestBox = document.getElementsByClassName('biggest_box')[0];
      let but = document.getElementsByClassName('smaller_box_nine')[0];
      let arr = biggestBox.getElementsByTagName('div');
      // let smaller_box_nine = document.getElementsByClassName('smaller_box_nine')[0];
      // console.log(arr);
      let b;
      let a = 0;
      let num = 0; //圈数
      let time = 300;
      let randNum = 0;
      but.onclick = on;
      function on() {
        // for (let i = 0; i < arr.length; i++) {
        //  arr[i].style.backgroundColor = '#0000ff';
        // }
        but.onclick = null;
        randNum = Math.floor(Math.random() * 8); //随机整数
        arr[a].style.backgroundColor = '#ff0000';
        b = setInterval(fn, time);
      }
      function fn() {
        if (a < arr.length - 1) {
          a++;
          arr[a - 1].style.backgroundColor = '#0000ff';
        } else {
          a = 0;
          num++;
          arr[arr.length - 1].style.backgroundColor = '#0000ff';
        }
        arr[a].style.backgroundColor = '#ff0000';
        if (num <= 2) {
          if (time <= 100) {
            time = 100;
          } else {
            time -= 20;
          }
        } else {
          if (time >= 300) {
            time = 300;
          } else {
            time += 20;
          }
        }
        // console.log(num);
        if (num > 6 && a == randNum) {
          clearInterval(b);
          num = 0;
          time = 100;
          randNum = 0;
          setTimeout(function() {
            alert('哟,运气可以啊')
            but.onclick = on;
          });
        } else {
          clearInterval(b);
          b = setInterval(fn, time);
        }
      }
相关文章
|
1月前
|
JavaScript
原生js炫酷随机抽奖中奖效果代码
原生js随机抽奖是一个炫酷的根据数据随机抽奖的代码,该网页可进行随机抽取一个数据,页面动画高科技、炫酷感觉的随机抽奖效果,简单好用,欢迎下载!
46 3
原生js炫酷随机抽奖中奖效果代码
|
24天前
|
JavaScript 前端开发 容器
jQuery多功能滑块插件r-slider.js
r-slider.js是一款jQuery多功能滑块插件。使用该插件,可以制作出滑块、开关按钮、进度条、向导步骤等多种效果。
31 5
|
1月前
|
JavaScript
js实现简洁实用的网页计算器功能源码
这是一款使用js实现简洁实用的网页计算器功能源码。可实现比较基本的加减乘除四则运算功能,界面简洁实用,是一款比较基本的js运算功能源码。该源码可兼容目前最新的各类主流浏览器。
24 2
|
2月前
|
人工智能 JavaScript 网络安全
ToB项目身份认证AD集成(三完):利用ldap.js实现与windows AD对接实现用户搜索、认证、密码修改等功能 - 以及针对中文转义问题的补丁方法
本文详细介绍了如何使用 `ldapjs` 库在 Node.js 中实现与 Windows AD 的交互,包括用户搜索、身份验证、密码修改和重置等功能。通过创建 `LdapService` 类,提供了与 AD 服务器通信的完整解决方案,同时解决了中文字段在 LDAP 操作中被转义的问题。
|
2月前
|
JavaScript
js学习--九宫格抽奖
js学习--九宫格抽奖
20 2
|
2月前
|
JavaScript
js学习--抽奖
js学习--抽奖
22 1
|
2月前
|
JavaScript 前端开发 API
|
2月前
|
前端开发 JavaScript
使用 JavaScript 实现图片预览功能
使用 JavaScript 实现图片预览功能
46 0
|
28天前
|
JavaScript 前端开发
JavaScript中的原型 保姆级文章一文搞懂
本文详细解析了JavaScript中的原型概念,从构造函数、原型对象、`__proto__`属性、`constructor`属性到原型链,层层递进地解释了JavaScript如何通过原型实现继承机制。适合初学者深入理解JS面向对象编程的核心原理。
25 1
JavaScript中的原型 保姆级文章一文搞懂
|
5月前
|
JavaScript Java 测试技术
基于springboot+vue.js+uniapp的客户关系管理系统附带文章源码部署视频讲解等
基于springboot+vue.js+uniapp的客户关系管理系统附带文章源码部署视频讲解等
103 2