0
가운데에 가로 빨간색과 세로 녹색 선을 가져와야합니다. 나는 각각을 위해 그것을 따로 할 수 있지만 함께 두 선은 초록색 일 것이다. 아무도 그 이유를 말할 수 있습니까?자바 스크립트에서 closePath()에 몇 가지 문제가 있습니다.
var c= document.getElementById('myCanvas').getContext('2d');
//c.fillRect(20,10,250,175);//
var cw= 450;
var ch= 300;
c.moveTo(0,(ch/2));
c.lineTo(450,(ch/2));
c.strokeStyle= '#db0000';
c.stroke();
c.moveTo((cw/2),0);
c.lineTo((cw/2),cw);
c.closePath();
c.strokeStyle= '#3ac214';
c.stroke();