欢迎来到程序小院
保卫战
玩法:当鬼子进入射击范围内点击鼠标左键射击,不要让鬼子越过炮台哦,快去杀鬼子去吧^^。
开始游戏https://www.ormcc.com/play/gameStart/249
html
<div style="position: relative;" id="gameDiv"></div>
css
body {
text-align: center;
background: #fff;
padding: 0;
border: 0;
margin: 0;
height: 100%;
}
html {
-ms-touch-action: none; /* Direct all pointer events to JavaScript code. */
}
#gameDiv, canvas {
display: block;
position: absolute;
margin: 0 auto;
padding: 0;
border: 0;
}
js
var NullLocalStorage = (function () {
function NullLocalStorage() {
this.data = {};
}
NullLocalStorage.prototype.getItem = function (key) {
return this.data[key];
};
NullLocalStorage.prototype.setItem = function (key, value) {
this.data[key] = value;
};
NullLocalStorage.prototype.removeItem = function (ke