• 2022-05-31
    以下哪项代码不能绘制蓝色边的红色实心矩形?其中ctx为绘图环境对象,canvas为画布对象。
    A: ctx.strokeStyle="
    B: 00f";ctx.fillStyle = "red";ctx.rect(20, 20, 100, 120);ctx.stroke();ctx.fill();
    C: ctx.fillStyle = "red";ctx.fillRect(20, 20, 100, 120);ctx.strokeStyle="blue";ctx.rect(20, 20, 100, 120);
    D: ctx.strokeStyle = "blue";ctx.fillStyle = "red";ctx.fillRect(20, 20, 100, 120);ctx.strokeRect(20, 20, 100, 120);
    E: 以上答案都不可选