Js简易老虎机案例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        .out{
            width: 100px;
            height: 300px;
            float: left;
        }
        .out1{
            width: 100px;
            height: 300px;
            float: left;
        }
        .out2{
            width: 100px;
            height: 300px;
            float: left;
        }
        div{
            width: 100px;
            height: 100px;
        }
        div:nth-child(1){
            background-color: #a3ff6f;
        }
        div:nth-child(2){
            background-color: cyan;
        }
        div:nth-child(3){
            background-color: coral;
        }
        #two :nth-child(1){
            background-color: cornflowerblue;
        }
        #two :nth-child(2){
            background-color: #ffc4bc;
        }
        #two :nth-child(3){
            background-color: #ffa2f1;
        }
        #three :nth-child(1){
            background-color: #ffcb56;
        }
        #three :nth-child(2){
            background-color: #b9ffd2;
        }
        #three :nth-child(3){
            background-color: #8768ff;
        }
    </style>
</head>
<body>
<input type="button" value="开始" onclick="f1()">
<input type="button" value="停止" onclick="f2()">
<hr>
<div id="one" class="out">
    <div id="d1">1</div>
    <div id="d4">4</div>
    <div id="d7">7</div>
</div>
<div id="two" class="out1">
    <div id="d2">2</div>
    <div id="d5">5</div>
    <div id="d8">8</div>
</div>
<div id="three" class="out2">
    <div id="d3">3</div>
    <div id="d6">6</div>
    <div id="d9">9</div>
</div>
</body>
<script>
    let dd1 = document.getElementById("d1");
    let dd2 = document.getElementById("d2");
    let dd3 = document.getElementById("d3");
    let dd4 = document.getElementById("d4");
    let dd5 = document.getElementById("d5");
    let dd6 = document.getElementById("d6");
    let dd7 = document.getElementById("d7");
    let dd8 = document.getElementById("d8");
    let dd9 = document.getElementById("d9");
    let arr=[dd1,dd2,dd3,dd4,dd5,dd6,dd7,dd8,dd9]
    let i = 0;
     function f () {
        if (i == 9) {
            i = 0;
            arr[8].style.background = "";
        }
        if (i > 0) {
            arr[i-1].style.background = "";
        }
        arr[i].style.cssText = "background-color: red;";
        i++;
    }
    function f1() {
        s1 = setInterval(f,300)
    }
    function f2() {
     clearInterval(s1)
    }
</script>
</html>

懂的都懂

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值