打地鼠游戏

无聊就想整个打地鼠的游戏,不多说直接撸代码:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8" />
    <meta name="robots" content="index,follow" />
    <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no,viewport-fit=contain" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge,chrome=1" />
    <meta name="apple-mobile-web-app-capable" content="yes" />
    <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
    <meta name="full-screen" content="yes" />
    <meta name="x5-fullscreen" content="true" />
    <meta name="format-detection" content="telephone=no" />
    <meta content="telephone=no, email=no" name="format-detection" />
    <title>打地鼠</title>
    <style>
        html,
        body {
            width: 100%;
            height: 70%;
        }

        body {
            cursor: url(images/chuizi.png), default;
            background: url('images/bg.jpg') no-repeat;
            background-size: 100% 100%;
        }

        table {
            overflow: hidden;
            margin-left: .5rem;
        }

        td {
            width: 2.8rem;
            height: 2.666667rem;
            background: url('images/00.png') no-repeat;
            background-size: 100% 50%;
            background-position: center bottom;
            z-index: 1;
            position: relative;
            overflow: hidden;
        }

        img {
            width: 1.333333rem;
            height: 1.333333rem;
            margin-top: .933333rem;
            margin-left: .666667rem;
            margin-right: .666667rem;
            z-index: -1;
        }

        .imgUp {
            z-index: -1;
            animation: donghua .5s infinite;
            animation-iteration-count: 1;
        }

        .cryRat {
            height: 1.066667rem;
            margin-top: .933333rem;
        }

        .hole {
            width: 100%;
            height: .666667rem;
            position: absolute;
            bottom: 0;
            background: url('images/dong.png') no-repeat;
            background-size: 100% 100%;
            z-index: 22;
        }

        @keyframes donghua {
            0% {
                transform: translate(0, .133333rem);
            }

            100% {
                transform: translate(0, -0.133333rem);
            }
        }
    </style>
    <script src="js/jquery-2.1.4.js"></script>
    <script src="js/flexible.js"></script>
</head>

<body>
    <div class="title">
        <div class="score">
            <span>分数:</span>
            <span class="scoreNum"></span>
        </div>
        <div>
            <span>剩余时间:</span>
            <span class="time"></span>
        </div>
    </div>
    <button>开始游戏</button>
    <table>
        <tr>
            <td>
                <img src="" alt="">
                <div class="hole"></div>
            </td>
            <td>
                <img src="" alt="">
                <div class="hole"></div>
            </td>
            <td>
                <img src="" alt="">
                <div class="hole"></div>
            </td>
        </tr>
        <tr>
            <td>
                <img src="" alt="">
                <div class="hole"></div>
            </td>
            <td>
                <img src="" alt="">
                <div class="hole"></div>
            </td>
            <td>
                <img src="" alt="">
                <div class="hole"></div>
            </td>
        </tr>
        <tr>
            <td>
                <img src="" alt="">
                <div class="hole"></div>
            </td>
            <td>
                <img src="" alt="">
                <div class="hole"></div>
            </td>
            <td>
                <img src="" alt="">
                <div class="hole"></div>
            </td>
        </tr>
    </table>
</body>
<script>
    var imgRandow, $img, interval, isClick = true,
        countdown = 60,
        endTime, num = 0;
    var arr = [60, 45, 30, 15]
    $('.time').text(countdown)
    $('.scoreNum').text(num)
    $('button').click(function () {
        num = 0;
        countdown = 60,
            hitRat()
        time()
        endTime = setInterval(() => {
            setTime()
        }, 1000);

    })

    function setTime() {
        if (countdown <= 0) {
            window.clearInterval(endTime)
            window.clearInterval(interval)
            alert('您的得分为:' + num)
            return;
        } else {
            countdown--
            $('.time').text(countdown)
            $('.scoreNum').text(num)
        }
    }

    function random() {
        imgRandow = Math.floor(Math.random() * 9)
        $img = $('img')[imgRandow]
        return $img;
    }

    function time(speed = 1000) {
        interval = setInterval(() => {
            $('img').attr('src', '').removeClass('imgUp').removeClass('cryRat')
            $(random()).attr('src', 'images/01.png').addClass('imgUp')
            isClick = true;
        }, speed);

    }

    function hitRat() {
        $('img').click(function () {
            if (!isClick) return;
            isClick = false;
            num++
            $(this).attr('src', 'images/02.png').removeClass('imgUp').addClass('cryRat')
            clearInterval(interval)
            if(countdown <= 45 && countdown > 30 ) {
                time(800)
            }else if(countdown <= 30 && countdown > 15){
                time(600)
            }else if(countdown <= 15) {
                time(500)
            }else {
                time()
            }
            //time()
            console.log($(this).attr('src'))
        })
    }
</script>

</html>

项目结构:在这里插入图片描述

效果:在这里插入图片描述
其实还有很多问题,欢迎各位同学一起讨论,一起学习一起进步。有需要图片的同学可以私聊我。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值