JavaScript之打飞机小游戏 html

Posted fatinggoodboy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript之打飞机小游戏 html相关的知识,希望对你有一定的参考价值。

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

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <link rel="stylesheet" href="./css/global.css">
</head>

<body>
    <div class="container">
        <!-- 开始游戏界面 -->
        <div class="start-page" id="startPage">
            <input type="button" value="开始游戏" class="start-btn" id="startBtn">
        </div>
        <!-- 游戏中界面 -->
        <div class="playing-page" id="playingPage">
            <!--  记分版 -->
            <p class="mark-column"><span>分数:</span><b class="mark" id="mark">0</b></p>
            <!-- 游戏结束界面 -->
            <div class="game-over">
                <h3>飞机大战总分</h3>
                <p class="mark-end" id="markEnd"></p>
                <input type="button" value="继续游戏" class="continue-btn" id="continueBtn">
            </div>
        </div>
        <!--  -->
    </div>
    <script src="./js/jquery-1.12.4.min.js"></script>
    <!-- <script src="./js/lodash.min.js"></script> -->
    <script src="./js/index.js"></script>
    <script src="./js/player.js"></script>
    <script src="./js/enemy.js"></script>
    <script src="./js/bullet.js"></script>
</body>

</html>

以上是关于JavaScript之打飞机小游戏 html的主要内容,如果未能解决你的问题,请参考以下文章

[知了堂学习笔记]_JS小游戏之打飞机-飞机之间的互相撞击,boss的出现,以及控制boss死亡

javascript飞机大战-----009游戏结束

javascript飞机大战-----001分析

javascript飞机大战-----002游戏引擎

javascript飞机大战-----007爆炸效果

飞机大战html游戏全代码jsjquery操作