jquery九宫格抽奖转盘插件lottery

最近遇到一个需求是让做一个抽奖转盘
上网查了一下,找到一个插件lottery.js,修改了一下,拿来用,感兴趣的可以看一下

  • 要求:由前端随机产生奖品,最多一次抽到谢谢惠顾,每次奖品不能重复
  • 抽奖示例


    抽奖示例
  • 主要的html结构
<ul class="lotteryList" id="lottery">
    <li class="item active lottery-unit lottery-unit-0">
        <img class="gift" src="./images/gift01.png" alt="">
        <img class="hot" src="./images/hot.png" alt="">
        <p class="giftTitle">iPhone 11 Pro</p>
    </li>
    <li class="item lottery-unit lottery-unit-1">
        <img class="gift" src="./images/gift02.png" alt="">
        <img class="hot" src="./images/hot.png" alt="">
        <p class="giftTitle">Au9999金条</p>
    </li>
    <li class="item lottery-unit lottery-unit-2">
        <img class="gift" src="./images/gift03.png" alt="">
        <p class="giftTitle">华为P40 Pro</p>
    </li>
    <li class="item lottery-unit lottery-unit-7">
        <img class="gift" src="./images/gift04.png" alt="">
        <p class="giftTitle">谢谢参与</p>
    </li>
    <li class="item luck draw-btn">
        <p class="luckNum">剩余次数:<span class="surplusNum"></span>次</p>
        <p class="luckTitle">开始抽奖</p>
        <img class="hand" src="./images/hand.png" alt="">
    </li>
    <li class="item lottery-unit lottery-unit-3">
        <img class="gift" src="./images/gift06.png" alt="">
        <p class="giftTitle">Redmi K30</p>
    </li>
    <li class="item lottery-unit lottery-unit-6">
        <img class="gift" src="./images/gift07.png" alt="">
        <p class="giftTitle">小米10</p>
    </li>
    <li class="item lottery-unit lottery-unit-5">
        <img class="gift" src="./images/gift08.png" alt="">
        <p class="giftTitle">T-shirt</p>
    </li>
    <li class="item lottery-unit lottery-unit-4">
        <img class="gift" src="./images/gift09.png" alt="">
        <img class="suggest" src="./images/suggest.png" alt="">
        <p class="giftTitle">黄金吊坠</p>
    </li>
</ul>
  • 抽奖的js代码
// 创建抽奖对象
var lottery = {
    index: -1, //当前转动到哪个位置,起点位置
    count: 0, //总共有多少个位置
    timer: 0, //setTimeout的ID,用clearTimeout清除
    speed: 20, //初始转动速度
    times: 0, //转动次数
    cycle: 75, //转动基本次数:即至少需要转动多少次再进入抽奖环节
    prize: -1, //中奖位置
    lastCount: '3', //剩余的抽奖次数
    result: [], //中奖结果
    giftList: [0, 1, 2, 3, 4, 5, 6, 7], //奖品数组
    token: '1b19ffa260fa6c6e36ded3cafefbd4c5',
    init: function (id) {
        if ($('#' + id).find('.lottery-unit').length > 0) {
            $lottery = $('#' + id);
            $units = $lottery.find('.lottery-unit');
            this.obj = $lottery;
            this.count = $units.length;
            $lottery.find('.lottery-unit.lottery-unit-' + this.index).addClass('active');
            // console.log(this.count);
        };
    },
    roll: function () {
        var index = this.index;
        var count = this.count;
        var lottery = this.obj;
        $(lottery).find('.lottery-unit.lottery-unit-' + index).removeClass('active');
        index += 1;
        if (index >= count) {
            index = 0;
        };
        $(lottery).find('.lottery-unit.lottery-unit-' + index).addClass('active');
        this.index = index;
        return false;
    },
    stop: function (index) {
        this.prize = index;
        return false;
    },
    //这是中奖的请求
    hajax: function () {
        console.log('lottery.prize:' + lottery.prize);
        // $.ajax({
        //     type: 'post',
        //     url: '接口地址',
        //     data: { 数据 },
        //     dataType: 'json',
        //     success: function (res) {
        //     },
        //     error: function () {
        //     }
        // })
    }

};
//转圈方法
function roll() {
    lottery.times += 1;
    lottery.roll(); //转动过程调用的是lottery的roll方法,这里是第一次调用初始化

    if (lottery.times > lottery.cycle + 10 && lottery.prize == lottery.index) {
        clearTimeout(lottery.timer);
        setTimeout(function () {
            sprisein(lottery.prize) //弹出中奖盒子
            lottery.hajax(); //给后端发中奖记录
            lottery.prize = -1;
            lottery.times = 0;
            click = false;
        }, 500);

    } else {
        if (lottery.times < lottery.cycle) {
            lottery.speed -= 10;
        } else if (lottery.times == lottery.cycle) {
            var index = random(0, lottery.giftList.length - 1); //随机生成一个0-7之间的数字
            lottery.prize = lottery.giftList[index]; //最后产生的奖品序号
            lottery.giftList.splice(index, 1); //保证奖品唯一
            lottery.lastCount -= 1; //抽奖次数-1
            lottery.result.push(lottery.prize);//保存中奖结果
            console.log(lottery.result);
        } else {
            if (lottery.times > lottery.cycle + 10 && ((lottery.prize == 0 && lottery.index == 7) || lottery.prize == lottery.index + 1)) {
                lottery.speed += 110;
            } else {
                lottery.speed += 20;
            }
        }
        if (lottery.speed < 40) {
            lottery.speed = 40;
        };

        lottery.timer = setTimeout(roll, lottery.speed); //循环调用
    }
    return false;
}

// 生成随机数字
function random(min, max) {
    return Math.floor(Math.random() * (max - min)) + min;
}

var click = false;//控制抽奖按钮是否响应
window.onload = function () {
    lottery.init('lottery'); //初始化抽奖对象
    $(".surplusNum").text(lottery.lastCount)
    $('.draw-btn').click(function () {
        if (lottery.lastCount > 0) {
            $(".surplusNum").text(lottery.lastCount - 1)
        } else {
            $(".surplusNum").text(lottery.lastCount)
        }
        if (lottery.lastCount == 0) {
            alert('您的抽奖机会已经用完')
        } else if (click) { //click控制一次抽奖过程中不能重复点击抽奖按钮,后面的点击不响应
            return false;
        } else {
            lottery.speed = 100;
            roll(); //转圈过程不响应click事件,会将click置为false
            click = true; //一次抽奖完成后,设置click为true,可继续抽奖
            return false;
        }
    });
};

//中奖盒子
function sprisein(sprisNum) {
    var gift = '',
        ifGift = sprisNum,
        giftUrl = '';

    if (ifGift == 0) {
        gift = 'iPhone 11 Pro';
        giftUrl = 'gift01';
    } else if (ifGift == 1) {
        gift = 'Au9999金条';
        giftUrl = 'gift02';
    } else if (ifGift == 2) {
        gift = '华为P40 Pro';
        giftUrl = 'gift03';
    } else if (ifGift == 3) {
        gift = 'Redmi K30';
        giftUrl = 'gift06';
    } else if (ifGift == 4) {
        gift = '黄金吊坠';
        giftUrl = 'gift09';
    } else if (ifGift == 5) {
        gift = 'T-shirt';
        giftUrl = 'gift08';
    } else if (ifGift == 6) {
        gift = '小米10';
        giftUrl = 'gift07';
    } else if (ifGift == 7) {
        gift = '谢谢惠顾';
        giftUrl = 'gift04';
    }
    // $('.surplusNum').text(lottery.lastCount);
    alert('获得' + gift)
}

  • css代码
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

.lotteryList {
    width: 579px;
    height: 579px;
    border: 6px solid #FFA91A;
    box-shadow: 0px 5px 3px 0px rgba(128, 9, 14, 0.58);
    border-radius: 24px;
    padding: 25px 20px 23px;
    margin: 40px auto;
}

.item {
    width: 161px;
    height: 161px;
    background: rgba(255, 182, 68, 0.1);
    border-radius: 10px;
    border: 3px solid rgba(255, 182, 68, .9);
    position: relative;
    margin-right: 22px;
    margin-bottom: 22px;
    padding-top: 8px;
    padding-left: 16px;
    float: left;
}

.item:nth-child(2) {
    margin-bottom: 0;
}

.item:nth-child(3) {
    margin-right: 0;
}

.item:nth-child(6) {
    margin-left: -4px;
    margin-right: 0;
}

.item:nth-child(7),
.item:nth-child(8),
.item:nth-child(9) {
    margin-top: -10px;
}

.item:nth-child(9) {
    margin-right: 0;
}

.gift {
    width: 122px;
    height: 122px;
    margin-bottom: 8px;
}

.giftTitle {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    background: #FFB644;
    border-radius: 3px 3px 6px 6px;
    font-weight: 400;
    color: #fff;
    text-align: center;
}

.item.active {
    background: rgba(229, 19, 40, 0.1);
    border: 3px solid #E51328;
}

.item.active .giftTitle {
    background: rgba(229, 19, 40, 1);
}

.hot {
    position: absolute;
    top: -10px;
    right: -12px;
    width: 70px;
    height: 70px;
}

.suggest {
    position: absolute;
    top: -14px;
    right: -10px;
    width: 63px;
    height: 70px;
}

.luck {
    width: 211px;
    height: 211px;
    background: url(./images/gift05.png) top center no-repeat;
    background-size: cover;
    border: none;
    margin: 0;
    padding-top: 40px;
    margin-left: -25px;
    margin-top: -24px;
    padding-left: 22px;
    cursor: pointer;
}

.luckNum {
    width: 166px;
    height: 30px;
    font-size: 16px;
    background: linear-gradient(90deg, rgba(255, 208, 95, .4), rgba(214, 65, 69, .4), rgba(255, 207, 98, .4));
    color: #FFFBEA;
    font-weight: 400;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.luckTitle {
    width: 166px;
    font-size: 28px;
    margin-top: 12px;
    font-weight: 800;
    color: #E34A0F;
    line-height: 1;
    text-align: center;
}

.hand {
    position: absolute;
    width: 72px;
    height: 80px;
    left: 72px;
    bottom: 34px;
    animation: updown 1s ease-in-out 1s infinite alternate;
}

@keyframes updown {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(15px);
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342