效果图:
代码如下:
*{margin:0;padding:0;}
#container{width:310px;height:310px;margin:30px auto;}
#ul1{width:310px;height:310px;list-style:none;}
#ul1 li,#ul1 a{width:100px;height:100px;border:1px solid #565656;float:left;text-align:center;line-height:100px;}
#ul1 a:hover{cursor:pointer;color:orange;font-size:18px;}
#ul1 .active{background:red;color:#fff;}
#pp{line-height:32px;color:#9a9a9a;text-align:center;}
- 一等奖
- 二等奖
- 三等奖
- 四等奖
开始
五等奖六等奖七等奖八等奖var container = document.getElementById('container'),
li = container.getElementsByTagName('li'),
aa = container.getElementsByTagName('a')[0],
pp = document.getElementById('pp'),
timer = null;
function start(){
var i = 0;
var num = Math.floor(Math.random() * li.length) + 20;
if(i
timer = setInterval(function(){
for(var j=0;j
li[j].className = '';
}
li[i%li.length].className = 'active';
i++;
if(i === num){
clearInterval(timer);
if(num%li.length === 0){
pp.innerHTML += "恭喜您中了:8 等奖" + '
';
}else{
pp.innerHTML += "恭喜您中了:"+ parseInt(num%li.length) + " 等奖"+ '
';
}
}
},130);
}
}
aa.onclick = function(){
start();
}
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!