単純なキャンバスを次のように考えます
$(document).ready(function(){
draw();
});
function draw() {
var canvas = document.getElementById("canvas");
if (canvas.getContext) {
var ctx = canvas.getContext("2d");
ctx.fillStyle = "rgb(200,0,0)";
ctx.fillRect (10, 10, 55, 50);
ctx.fillStyle = "rgba(0, 0, 200, 0.5)";
ctx.fillRect (30, 30, 55, 50);
}
}
変数をjQuery関数に導入して、定義された変数(カラーセットなど)で複数のキャンバスを描画するにはどうすればよいですか?
draw(variables)
実際、キャンバスIDとそのオプション(色など)を、などで提供される変数に置き換えたいと思いますdraw(canvas_id, color, ...)
。
例:(異なるDOM要素に複数のキャンバスを作成する場合)
function draw(ccc) {
var canvas = document.getElementById(ccc);
if (canvas.getContext) {
var ctx = canvas.getContext("2d");
ctx.fillStyle = "rgb(200,0,0)";
ctx.fillRect (10, 10, 55, 50);
ctx.fillStyle = "rgba(0, 0, 200, 0.5)";
ctx.fillRect (30, 30, 55, 50);
}
}
draw(canvas1);
draw(canvas2);