Canvas JavaScript
- http://www.html5.jp/canvas/
- http://gigazine.net/index.php?/news/comments/20070111_canvas/
- http://pigs.sourceforge.jp/wiki/index.php?canvas
※canvas要素はieでは標準実装されていません
canvas要素はstyleでなく、htmlの属性として幅、高さの指定をすること
canvas style="width:400px;height:px;" // ダメ
canvas width="400" height="400"
JavaScriptでcanvas要素のdom指定は、jQueryのセレクタでなくgetElementByIdで指定すること
var canvas = $('#canvas'); // ダメ
var canvas = document.getElementById("canvas");