HTML遊戲示例
學習如何僅使用 HTML 和 JavaScript 來製作遊戲。
按下按鈕移動紅色方塊
動手實踐示例
透過我們的線上編輯器,您可以編輯程式碼,然後點選按鈕檢視結果。
示例
function startGame() {
myGamePiece = new component(30, 30, "red", 10, 120);
myGamePiece.gravity = 0.05;
myScore = new component("30px", "Consolas", "black", 280, 40, "text");
myGameArea.start();
}
var myGameArea = {
canvas : document.createElement("canvas"),
start : function() {
this.canvas.width = 480;
this.canvas.height = 270;
this.context = this.canvas.getContext("2d");
document.body.insertBefore(this.canvas, document.body.childNodes[0]);
this.frameNo = 0;
},
clear : function() {
this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);
}
}
自己動手試一試 »