A classic snake game written for the Kobo Portal.
Score: 0
function pauseGame(){
if(gameRunning){
paused=!paused;
if(paused){
document.getElementById("message").innerHTML=
"Paused";
}
else{
document.getElementById("message").innerHTML=
"Game running";
}
}
}
Press Start to begin.
Controls
- Arrow Keys = Move
- Eat food to grow.
- Do not hit the walls.
- Do not hit yourself.
Return to Home