+ 3
How to make animations using canvas?
2 Answers
+ 6
var d = getElementById("canvas").getContext("2d");
d.fillStyle = "blue";
d.fillRect(0,0,window.innerWidth,window.innerHeight);
This draws a fullscreen box.
+ 5
It's a whole damn library! Go learn it from the Internet