jQuery实现小游戏飞机大战

游戏规则:
WSAD键控制大飞机移动方向,按下J键可发射子弹消灭敌机,每歼灭一架敌机可得10分;
与敌机相撞或者有遗漏敌机没有歼灭,则游戏结束
游戏显示如下图:
在这里插入图片描述

css部分:

  <style>
        .container {
   
            width: 800px;
            height: 500px;
            margin: 10vh auto;
            background: #000;
            position: relative;
            overflow: hidden;
        }

        .plane {
   
            color: #fff;
            width: 70px;
            height: 70px;
            position: absolute;
            bottom: 10px;
            left: calc(50% - 30px);
            background: url(img/战斗机.png) no-repeat;
            background-size: 70px 70px;

        }

        .bullet {
   
            width: 25px;
            height: 30px;
            background: url(img/子弹.png) no-repeat;
            background-size: 100% 100%;
            position: absolute;
        }

        .enemy {
   
            width: 40px;
            height: 40px;
            background: url(img/战斗机.png) no-repeat;
            transform: rotate(180deg);
            background-size: 100% 100%;
            position: absolute;
            top: 0;
        }

        .again {
   
            width: 220px;
            height: 160px;
            border: 1px solid #ccc;
            box-shadow: 5px 5px #ccc;
            background: rgb(252, 187, 187);
            text-align: center;
            line-height: 80px;
            color: #fff;
            font-size: 20px;
            position: absolute;
            top: calc(50% - 80px);
            left: calc(50% - 110px);
            margin: 0 auto;
            cursor: pointer;
        }

        i {
   
            font-style: normal;
        }

        .sorce {
   
            height: 30px;
            font-size: 20px;
            text-align: center;
            font-weight: bold;
            margin: 0 auto;
            position: absolute;
            top: 65px;
            left: calc(50% - 100px
  • 3
    点赞
  • 12
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值