javaScript實現網頁版的彈球遊戲
利用javeScript對象以及方法實現的網頁彈球遊戲,供大傢參考,具體內容如下
<!DOCTYPE html> <html> <head> <tilie>呼呼哈嘿的網頁彈球</title> </head> <body> <canvas id="canvas"width="400"height="400"></canvas> <script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.0/jquery.js"></script> <script> var canv=document.getElementById("canvas"); var ctx=canv.getContext("2d"); //創建一個小球對象 var ball={ x: 100, y: 100, xSpeed: -5, ySpeed: -5 }; //定義繪制小球的方法 ball.draw=function(){ ctx.beginPath(); ctx.arc(this.x,this.y,10,0,Math.PI*2,false); ctx.fill(); }; //定義小球運動的方法 ball.move=function(){ this.x =this.x+this.xSpeed; this.y =this.y+this.ySpeed; }; //邊界判斷 ball.checkCanvas=function(panelStart,panelEnd) { if(this.x<0||this.x>400) this.xSpeed=-this.xSpeed; if(this.y<0) this.ySpeed=-this.ySpeed; if(this.y>390){ if(this.x>panelStart && this.x<panelEnd) this.ySpeed=-this.ySpeed; else{ alert("GAME OVER!!!"); this.x= 50; this.y=100; } } }; //定時功能使得小球動起來 setInterval(function() { ctx.clearRect(0,0,400,400); ball.draw(); panel.draw(); ball.move(); ball.checkCanvas(panel.x,panel.x+panel.xSize); ctx.strokeRect(0,0,400,400); },30); //定時函數,每30ms執行一次大括號中的代碼; //創建擋板的對象; var panel ={ x:200, y:390, xSize: 50, ySize: 5 }; //擋板移動方法 panel.draw=function(){ ctx.fillRect(this.x,this.y,this.xSize,this.ySize); }; //利用jquery實現按鍵交互; $("body").keydown(function(event) { console.log(event.keyCode); if(event.keyCode==37){ panel.x=panel.x-5; if(panel.x<0){ panel.x=0; } } if(event.keyCode==39){ panel.x=panel.x+5; if(panel.x>400-50){ panel.x=350; } } } ); </script> </body> </html>
以上就是本文的全部內容,希望對大傢的學習有所幫助,也希望大傢多多支持WalkonNet。
推薦閱讀:
- JavaScript實現網頁版貪吃蛇遊戲
- JavaScript canvas實現跟隨鼠標移動小球
- javascript canvas實現雨滴效果
- JS+Canvas實現接球小遊戲的示例代碼
- Python+Pygame編寫一個Pong遊戲