我正在尝试使用 HTML5 画布在绿线的左侧绘制一条红线。这是我的javascript:
var canvas = document.createElement('canvas');
canvas.height = 150;
canvas.width = 150;
var canvasContext = canvas.getContext('2d');
canvasContext.beginPath();
// Draw the red line.
canvasContext.strokeStyle = '#f00';
canvasContext.moveTo(10, 0);
canvasContext.lineTo(10, 100);
canvasContext.stroke();
// Draw the green line.
canvasContext.moveTo(50, 0);
canvasContext.strokeStyle = '#0f0';
canvasContext.lineTo(50, 100);
canvasContext.stroke();
document.body.appendChild(canvas);
但是,在 Google Chrome 中,我在浅绿色线的左侧看到了一条深绿色线。为什么?我叫了stroke两次对吧?因此,为什么我的第一次中风会影响我的第二次?
这是一个 JSFiddle,它说明了我的意思。