IE下画线
<script><br>var R =function(){};<br>R.prototype.createLine = function (startX,startY,endX,endY){ <br> var le = document.createElement( " <v:라인><v:라인>" ); <br> le.from = startX ',' startY ; <br> le.to = endX ',' endY ; <br> le.Strokecolor= "빨간색" ; <br> le.strokeweight= "1pt" ; <br> 파일 반환; <br>} <br>var d =new R();<br>document.body.appendChild(d.createLine(1,1,200,100));<br></script>
// 캔버스가 지원되지 않는 경우 실행되지 않도록 하세요
if (canvas.getContext){
// 그리기에 캔버스를 사용하려면 getContext를 사용하세요.
var ctx = canvas.getContext('2d');
// 모양 그리기
ctx.fillRect(25,25,100,100);
ctx.clearRect(45,45,60,60);
ctx.strokRect(50,50,50,50) ;
ctx.beginPath();
ctx.moveTo(100,100);
ctx.lineTo(200,250);
ctx.lineTo(50,250);
ctx.closePath();
ctx.Stroke();
} else {
Alert('이 데모를 보려면 Safari 또는 Firefox 1.5가 필요합니다.');
}
}