2
複数の図面を1つのキャンバスに追加する際に問題があります。 https://jsfiddle.net/ym5q9ktp/複数のdrawImage()を1つのキャンバスに追加する
HTML::
<canvas id="myCanvas" width="240" height="297" style="border:1px solid #d3d3d3;">
Your browser does not support the HTML5 canvas tag.
</canvas>
JS:
function lc(canv, x1, y1, x2, y2) {
c = canv.getContext("2d");
c.beginPath();
c.moveTo(x1, y1);
c.lineTo(x2, y2);
c.strokeStyle = "red";
c.stroke();
return c
}
var canvas = document.getElementById("myCanvas");
var ctx = canvas.getContext("2d");
ctx.beginPath();
ctx.moveTo(0, 0);
ctx.lineTo(200, 100);
ctx.stroke();
ctx.drawImage(lc(canvas, 15, 56, 56, 75), 10, 10);
ctx.drawImage(lc(canvas, 25, 56, 156, 95), 80, 80);
コードはjsのコードの最後の行の第二の赤線を引いていない私はいくつかの例を作りました。それを修正するには?
ありがとう、それは働いている方法:) – Michal