时间:2021-05-18
本文实例为大家分享了jQuery实现抽奖程序的具体代码,供大家参考,具体内容如下
1. 主要需求
2. 素材页面
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>抽奖程序</title> <script type="text/javascript" src="../js/jquery-1.11.1.js"></script> <style type="text/css"> #small { border: 1px solid blueviolet; width: 75px; height: 75px; margin-bottom: 20px; } #smallPhoto { width: 75px; height: 75px; } #big { border: 2px solid orangered; width: 500px; height: 500px; position: absolute; left: 300px; top: 10px } #bigPhoto { width: 500px; height: 500px; } #btnStart { width: 100px; height: 100px; font-size: 22px; } #btnStop { width: 100px; height: 100px; font-size: 22px; } </style> </head><body><!-- 小像框 --><div id="small"> <img id="smallPhoto" src="../img/man00.png"/></div><!-- 大像框 --><div id="big"> <img id="bigPhoto" src="../img/begin.jpg" /></div><input id="btnStart" type="button" value="点击开始"/><input id="btnStop" type="button" value="点击停止"/ disabled> <script type="text/javascript"> </script></body></html>3. 代码实现
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>抽奖程序</title> <script type="text/javascript" src="../js/jquery-1.11.3.js"></script> <style type="text/css"> #small { border: 1px solid blueviolet; width: 75px; height: 75px; margin-bottom: 20px; } #smallPhoto { width: 75px; height: 75px; } #big { border: 2px solid orangered; width: 500px; height: 500px; position: absolute; left: 300px; top: 10px } #bigPhoto { width: 500px; height: 500px; } #btnStart { width: 100px; height: 100px; font-size: 22px; } #btnStop { width: 100px; height: 100px; font-size: 22px; } </style></head><body><!-- 小像框 --><div id="small"> <img id="smallPhoto" src="../img/man00.jpg"/></div><!-- 大像框 --><div id="big"> <img id="bigPhoto" src="../img/begin.jpg" /></div><input id="btnStart" type="button" value="开始" onclick="gameStart()"><input id="btnStop" type="button" value="停止" disabled onclick="gameOver()"><script type="text/javascript"> //初始化抽奖的名单(图片地址) let imgs = [ "../img/man00.jpg", "../img/man01.jpg", "../img/man02.jpg", "../img/man03.jpg", "../img/man04.jpg", "../img/man05.jpg", "../img/man06.jpg", ]; //定时器序号 let counter = null; //点击开始 function gameStart() { //开始按钮禁用 $("#btnStart").prop("disabled",true); //停止按钮可用 $("#btnStop").prop("disabled",false); //定义计数变量 let num = 0; //使用定时器实现小图框快速切换图片 counter = setInterval(function () { //通过取余,循环得到数组得到索引 let index = num%imgs.length; //修改小图框中img的src即可 $("#smallPhoto").attr("src",imgs[index]); //计数变量自增 num++; },20); } //点击结束 function gameOver() { //禁用结束按钮 $("#btnStop").prop("disabled",true); //取消开始按钮的禁用 $("#btnStart").prop("disabled",false); //停止小图框的抽奖(停止定时器) clearInterval(counter); //将计算变量重置为0 num = 0; //获取小图框图片地址 let imgUrl = $("#smallPhoto").attr("src"); //将抽奖结果显示在大图框中,并隐藏起来 $("#bigPhoto").attr("src",imgUrl).hide(); //将图片进行淡出 $("#bigPhoto").fadeIn(2000); }</script></body></html>示例素材:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
用jquery实现抽奖小程序这些日子,到处都可以看到关于微信小程序的新闻或报到,在博客园中写关于微信小程序的也不少。但是今天我要说的不是微信小程序,而是用简单的
本文实例讲述了jQuery实现的双11天猫拆红包抽奖效果代码,是一款基于jquery+css3实现的鼠标点击红包摇一摇抽奖代码,具有点击抽奖后红包摇动并弹出抽奖
源于前段时候微信小程序最初火爆公测时段,把以前用Canvas实现的大转盘抽奖移植成微信小程序,无奈当时小程序对Canvas支持不够完善,只好降低用CSS3实现。
抽奖程序在实际生活中广泛运用,由于应用场景不同抽奖的方式也是多种多样的。本文将采用实例讲解如何利用jQuery+PHP+MySQL实现类似电视中常见的一个简单的
基于Jquery的Javascript转盘抽奖程序,可以自定义抽奖界面,奖品数量、图片等,可控制中奖的奖品,抽奖转盘转动的速度和圈数。在实际使用中,应当把概率放