JS实现点星星消除小游戏

步骤及游戏功能分析:

1.网页上的随机出现小星星;

2.点击小星星,小星星消失;

绑定一个onclick事件:
    对象.事件 = 事件处理函数;
    注意:要想删除某个节点,必须找到它的父节点
    注意:在绑定事件中this可以直接使用

3.添加功能开始游戏

4.添加功能暂停游戏

5.游戏进度条功能

<style type="text/css"> #d2{ width: 100px; height: 20px; border: 1px solid red; display: inline-block; } #d3{ display: inline-block; background: yellow; height: 20px; } </style> <script type="text/javascript"> //window.onload = init; var countstar = 0;//控制星星个数变量 var timerStar;//生成星星定时器 var timerGameTime var t = 0;//记录时间变量 //开始游戏的函数 function startGame(){ window.clearInterval(timerStar); window.clearInterval(timerGameTime); timerStar = window.setInterval("star()",500); timerGameTime = window.setInterval("time()",1000); //记录游戏时间 } //创建星星的函数 function star(){ var obj = document.createElement("img"); obj.src = "images/star.png"; obj.width = Math.floor(Math.random()*60+20); obj.style.position = "absolute"; obj.style.left = Math.floor(Math.random()*1700+100)+"px"; obj.style.top = Math.floor(Math.random()*500+30)+"px"; document.body.appendChild(obj); countstar++; var sp = document.getElementById("d3"); sp.style.width = countstar*10+"px"; if (countstar > 10) { alert("游戏结束"); window.clearInterval(timerStar); location.reload(); } obj.onclick = removeStar; } //点击删除星星的函数 function removeStar(){ this.parentNode.removeChild(this); countstar --; var sp = document.getElementById("d3"); sp.style.width = countstar*10+"px"; } //点击暂停游戏的函数 function pauseGame(){ alert("游戏已暂停,点击确定继续游戏。"); } //记录游戏时间的函数 function time(){ t++ var obj = document.getElementById("d1"); obj.innerHTML= "游戏进行了"+t+"秒"; } </script> <body> <input type="button" value="开始游戏" οnclick="startGame()"> <input type="button" value="暂停游戏" οnclick="pauseGame()"> <span>游戏进行了0秒</span> <span><span></span></span> </body>

游戏效果:

JS实现点星星消除小游戏

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/d8a669098ef55dc2250e9b7949b4889a.html