An open API service indexing awesome lists of open source software.

https://github.com/n1ghtf1re/snake

Simple snake realization on js
https://github.com/n1ghtf1re/snake

js js-game js-games js-snake snake snake-game

Last synced: 7 months ago
JSON representation

Simple snake realization on js

Awesome Lists containing this project

README

          

# Snake

## About game
Simple snake realization on js

## Connecting the Game
+ Connect the style from the style/snake.css folder.
+ Connect the js-script from the js/snake.js folder.
+ Place on the page a div-block with id = field
+ Initialize the game field
```javascript
gameField = new Field(field)
onkeydown = function (e) {gameField.onKeyDown(e)}
```