美文网首页
web老虎机

web老虎机

作者: 顺风飘千里 | 来源:发表于2017-11-14 16:01 被阅读0次
    生成三个随机数
    slotOne = Math.floor(Math.random() * (3 - 1 + 1)) + 1;
    slotTwo = Math.floor(Math.random() * (3 - 1 + 1)) + 1;
    slotThree = Math.floor(Math.random() * (3 - 1 + 1)) + 1;
    
    检查随机数是否全部相等
    if(slotOne===slotTwo&&slotTwo===slotThree){
          return slotOne;
        }else{
          return null;
        }
    
    更新老虎机数字
    $($(".slot")[0]).html(slotOne);
    $($(".slot")[1]).html(slotTwo);
    $($(".slot")[2]).html(slotThree);
    
    根据不同的数字更新图片
    $($('.slot')[0]).html('<img src = "' + images[slotOne-1] + '">');
    $($('.slot')[1]).html('<img src = "' + images[slotTwo-1] + '">');
    $($('.slot')[2]).html('<img src = "' + images[slotThree-1] + '">');
    

    相关文章

      网友评论

          本文标题:web老虎机

          本文链接:https://www.haomeiwen.com/subject/rplfvxtx.html