Snake Game with Vanilla Javascript
Description
- The classic Snake game done in javascript, css, and html without any external libraries.
- A static site that you can either download and run in your own browser or See it live here
- WASD / Arrow Keys or the provided buttons to change the direction of the snake
Dependencies
Installing
- Download and run in your own browser
- Or see the live page here
Authors
Jackson Taylor (that’s me) : github
Notes on the code
- The snake game logic is done in a fairly standard method
- This uses a lot on DOM queries and manipulation as that was what I wanted to learn in this project, but if you were writing your own Version I would recommend having an actual matrix and updating that from a game loop