移动端九宫格抽奖源码

移动端九宫格抽奖源码_第1张图片

最近做了一个移动端九宫格抽奖页面。拿出来给大家分享一下。

页面布局HTML


























解释一下,页面是一张背景图上面的奖品是不同的图片定位上去的

css 部分

*{padding: 0;margin: 0;}
#lottery{width:2.95rem;height:3.03rem;padding: 0.23rem 0.24rem ;background:url(images/bg.jpg) no-repeat;background-size:87% 90%;margin:0.33rem 0.3rem;}
#lottery table td{width:0.617rem;height:0.655rem;text-align:center;vertical-align:middle;color:#333;font-index:-999;margin:0.2rem 0}
#lottery table td a{width:1.23rem;height:1.3rem;line-height:0.74rem;display:block;text-decoration:none;}
#lottery table td.active{background-color:#ea0000;}
#jiangping{
height: 100%;
width: 100%;
position: absolute;
display: none;
background: #ffffff;
font-size: 0.14rem;
}

移动端rem 适配。

下面就是重点的js 部分了

 

++++++++以下是游戏实现逻辑++++++++++

你可能感兴趣的:(移动端九宫格抽奖源码)