In this post I am continuing my foray into Easel.js. Here I am now actually displaying and animating pictures. So this post is about JavaScript animation – using EaselJS pt 2. We will be making this…
…and it will be the car that is moving across the screen.
Again you need to make up a simple html5 page and link to the easljs library…
<script src=”easel.js”></script>
First you need to create a stage and link it to your canvas element…
var page = document.getElementById(“canvas”);
var stage = new Stage(page);


