想到能讓畫面動起來就覺得很有趣~
天天練習 go go go!!
前方挑戰不容易讓我們一起動起來 ε= ᕕ( ᐛ )ᕗ
設定 BMO 初始化、更新要更新什麼、畫出 BMO 的方法 class Bmo { constructor(ctx, time) { // 希望畫布...
透過 audio tag 設定背景音樂 class BGM { constructor() { this.audio = documen...
class Game { constructor(){ // 每格寬為 26px this.blockWidth = 2...
class Snake { constructor() { // 蛇頭位子 this.head = new Vector...
class Snake { constructor() { // 蛇頭位子 this.head = new Vector...
玩貪食蛇遊戲時按上下左右按鍵會觸發網頁上下左右滾動,想把這個預設功能關掉,查了一下網路上熱心大大的解法,微改一下,我試是有關掉方向鍵的預設行為的樣子。 wind...
class Game{ startGame () { this.snake = new Snake(); this.st...