Snake Game using Javascript

Submitted by jaredgwapo on
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].xx) { drawRotatedImage(snakeTailImage,(snake[i].xx * 32), (snake[i].yy * 32), 180); }

Snow Effect Using Javascript

Submitted by jaredgwapo on
This is a simple program that will teach on how to create a snow effect using javascript. You can use this in your projects or systems. Just download the source code below. Instructions HTML Code Snow Demo Javascript Code /** * X-Team Snow * @author Andrew Valums * * Copyright (c) 2009 X-Team, http://x-team.com */ (function(){function k(a,b,c){if(a.addEventListener)a.addEventListener(b,c,false)

Progress Meter Using CSS and Javascript

Submitted by jaredgwapo on
In this tutorial, I am going to teach you on to make a beautiful progress meter using CSS and Javascript. Just download the source code below and follow the instructions. Instructions Creating our index.php page In this page we will be creating our html code. don't forget to place the css link on the head tag of the page and place the javascript link below the body tag. Progress Meter Task 1 Task