Drawing on canvas
Random processing
Game logic
Form output
Introduction
Among the most important new features in HTML5 is the canvas element . This element provides a way for developers to make line drawings, include images, and position text in a totally free-form fashion, a significant improvement over the older HTML. Although you could do some fancy formatting in the earlier versions, layouts tended to be boxy and pages less dynamic. How do you draw on the canvas? You use a scripting language, usually JavaScript. I will show you how to draw on canvas and I’ll explain the ...