In this post, I’m going to begin an examination of one of the hottest new features of HTML5, namely the Canvas element.
What is Canvas, anyway?
The best place to start is at the beginning, and that’s with an explanation of what Canvas actually is. Canvas is a new element that is part of the HTML5 specification, and can be added to your markup as simply as this:
1: <canvas id="myCanvas" width="500" height="500"></canvas>
OK, we’re done. Let’s go home.
Continue reading Exploring HTML5 Canvas: Part 1 – Introduction