欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

jquery实现九宫格大转盘抽奖_jquery

程序员文章站 2022-03-30 11:41:16
...
下面我们来分享一个九宫格抽奖特效

特效说明:

一款jQuery九宫格大转盘抽奖代码网页特效,点击抽奖按钮开始随机抽奖选择奖品,可设置起点位置、奖品数量、转动次数、中奖位置参数。(兼容测试:IE7及以上、Firefox、Chrome、Opera、Safari、360等主流浏览器)

HTML:


jquery实现九宫格大转盘抽奖_jquery jquery实现九宫格大转盘抽奖_jquery jquery实现九宫格大转盘抽奖_jquery jquery实现九宫格大转盘抽奖_jquery
jquery实现九宫格大转盘抽奖_jquery jquery实现九宫格大转盘抽奖_jquery
jquery实现九宫格大转盘抽奖_jquery jquery实现九宫格大转盘抽奖_jquery
jquery实现九宫格大转盘抽奖_jquery jquery实现九宫格大转盘抽奖_jquery jquery实现九宫格大转盘抽奖_jquery jquery实现九宫格大转盘抽奖_jquery

js部分


CSS部分

/* 效果CSS开始 */
#lottery{width:574px;height:584px;margin:0px auto;background:url(../images/bg.jpg) no-repeat;padding:50px 55px;}
#lottery table td{width:142px;height:142px;text-align:center;vertical-align:middle;font-size:24px;color:#333;font-index:-999}
#lottery table td a{width:284px;height:284px;line-height:150px;display:block;text-decoration:none;}
#lottery table td.active{background-color:#ea0000;}
/* 效果CSS结束 */

JS中可设置参数:

index:-1, //当前转动到哪个位置,起点位置
count:0, //总共有多少个位置
timer:0, //setTimeout的ID,用clearTimeout清除
speed:20, //初始转动速度
times:0, //转动次数
cycle:50, //转动基本次数:即至少需要转动多少次再进入抽奖环节
prize:-1, //中奖位置

最后奉上演示图

jquery实现九宫格大转盘抽奖_jquery