updated 添加文案

This commit is contained in:
PASSER-BY 2022-03-03 23:25:43 +08:00
parent ccd3628c15
commit d41a5fd4ee

View File

@ -43,10 +43,11 @@
<div class="wrapper"> <div class="wrapper">
<canvas id="canvas" width="960" height="640">不支持画布</canvas> <canvas id="canvas" width="960" height="640">不支持画布</canvas>
<div class="info">按[空格]暂停或继续</div> <div class="info">按[空格]暂停或继续</div>
<p>这款吃豆人游戏的开发是我在学习和探索HTML5游戏的一次尝试也是对这款经典街机游戏的致敬。游戏大致还原了我印象中Pac-Man的样子在移植关卡和玩法规则的同时在游戏中加入了游戏角色动画管理和幽灵的智能寻址算法实现了幽灵对玩家的围堵。希望能通过游戏和代码和你分享一些我对游戏开发的感悟。</p> <p>这款吃豆人游戏的开发是我在学习和探索HTML5游戏的一次尝试也是对这款儿时经典街机游戏的致敬。游戏大致还原了我印象中Pac-Man的样子在移植关卡和玩法规则的同时在游戏中加入了游戏角色动画管理和幽灵的智能寻址算法实现了幽灵对玩家的围堵。在你玩的过程中你会发现这些精灵似乎很有想法它们知道如何彼此协作对你穷追不舍。</p>
<p>如果你对此感兴趣可以在Github上关注此项目。我希望能通过游戏和代码与你分享一些我对游戏开发的感悟。</p>
<div class="mod-botton"> <div class="mod-botton">
<a class="github-button" href="https://github.com/mumuy" data-style="mega" data-count-href="/mumuy/followers" data-count-api="/users/mumuy#followers" data-count-aria-label="# followers on GitHub" aria-label="Follow @mumuy on GitHub">Follow @mumuy</a> <a class="github-button" href="https://github.com/mumuy" data-color-scheme="no-preference: light; light: light; dark: dark;" data-size="large" aria-label="Follow @mumuy on GitHub">Follow @mumuy</a>
<a class="github-button" href="https://github.com/mumuy/pacman" data-style="mega" data-count-href="/mumuy/pacman/stargazers" data-count-api="/repos/mumuy/pacman#stargazers_count" data-count-aria-label="# stargazers on GitHub" aria-label="Star mumuy/pacman on GitHub">Star</a> <a class="github-button" href="https://github.com/mumuy/pacman" data-color-scheme="no-preference: light; light: light; dark: dark;" data-icon="octicon-star" data-size="large" data-show-count="true" aria-label="Star mumuy/relationship on GitHub">Star</a>
</div> </div>
</div> </div>
<script src="game.js"></script> <script src="game.js"></script>
@ -57,7 +58,7 @@
(function() { (function() {
var hm = document.createElement("script"); var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?b86879c9cc57dd112fe1f7dd75206b82"; hm.src = "https://hm.baidu.com/hm.js?b86879c9cc57dd112fe1f7dd75206b82";
var s = document.getElementsByTagName("script")[0]; var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s); s.parentNode.insertBefore(hm, s);
})(); })();
</script> </script>