Snake

Simple Snake Game using HTML5 canvas and Pure Javascript

This tutorial tackles on how to create a simple snake game using HTML5 canvas and pure Javascript. Snake game a simple game wherein there is a small snake at first and gets bigger whenever it eats a food that randomly appears on the screen. The goal of this game is to get a high score which depends on how big your snake gets.

Snake Game using Javascript

In this tutorial, I am going to teach on how to create a snake game in javascript. Just download the source code and follow the instructions below. DIRECTIONS HTML Code snake[i-1].xx) { context.drawImage(snakeTailImage, (snake[i].xx * 32), (snake[i].yy * 32) ); } //following right else if(snake[i].xx snake[i-1].yy) { drawRotatedImage(snakeTailImage,(snake[i].xx * 32), (snake[i].yy * 32), 90); } /

Snake game

Hi, i'm a student in informatic and I had to correct and improve an original program. Rule : You must eat the purple square to gain point until you eat yourself accidentally. Control : Arrow key Bug correction/Improvement : -Sounds has been completely reworked. -Game doesn't freeze anymore before your snake die. -Look (Alignement, font, text, antialiasing...) Original version : http://www