是否可以在画布中创建一条线条以不同方式描边的路径?例如,您可以在里面画一个绿色的盒子,有 4 种不同颜色的边缘。我已经包含了一些代码,但这不起作用,因为它绘制了两次路径(第一次是未完成的路径,第二次是整个路径)。
JavaScript
window.onload = function()
{
canvas = document.getElementById("canvas1");
if (canvas.getContext)
{
ctx = canvas.getContext("2d");
ctx.beginPath();
ctx.save();
ctx.moveTo(0, 0);
ctx.strokeStyle = "rgb(255, 0, 0)";
ctx.lineTo(100, 100);
ctx.stroke();
ctx.strokeStyle = "rgb(0, 0, 255)";
ctx.lineTo(200, 100);
ctx.stroke();
ctx.restore();
}
}
HTML
<canvas id = "canvas1" width = "400" height = "400">
Your browser does not support the HTML5 canvas tag.
</canvas>