用代码画一幅小姑娘拿着花朵的画
时间: 2023-03-14 07:54:31 浏览: 95
如何用代码画出一幅好看的画
不好意思,我不会画,但是我可以用代码来描述一下: var canvas = document.getElementById("canvas"); var ctx = canvas.getContext("2d"); // draw the girl ctx.beginPath(); ctx.arc(200, 200, 60, 0, 2 * Math.PI); ctx.fillStyle = '#FFA500'; ctx.fill(); ctx.closePath(); // draw the flower ctx.beginPath(); ctx.arc(250, 150, 30, 0, 2 * Math.PI); ctx.fillStyle = '#FF0000'; ctx.fill(); ctx.closePath(); ctx.beginPath(); ctx.arc(270, 180, 10, 0, 2 * Math.PI); ctx.fillStyle = '#FFFF00'; ctx.fill(); ctx.closePath();
阅读全文