请你用canvas画大熊猫
时间: 2023-10-23 12:14:37 浏览: 136
好的,我可以用 HTML5 和 JavaScript 的 Canvas 标签来绘制一只可爱的大熊猫。以下是示例代码:
```
<!DOCTYPE html>
<html>
<head>
<title>Canvas 大熊猫</title>
</head>
<body>
<canvas id="panda" width="400" height="400"></canvas>
<script>
var canvas = document.getElementById("panda");
var ctx = canvas.getContext("2d");
ctx.fillStyle = "#ffffff";
ctx.fillRect(0, 0, canvas.width, canvas.height);
ctx.beginPath();
ctx.arc(200, 200, 160, 0, Math.PI*2);
ctx.fillStyle = "#000000";
ctx.fill();
ctx.beginPath();
ctx.arc(120, 130, 30, 0, Math.PI*2);
ctx.arc(280, 130, 30, 0, Math.PI*2);
ctx.fillStyle = "#ffffff";
ctx.fill();
ctx.beginPath();
ctx.arc(120, 130, 10, 0, Math.PI*2);
ctx.arc(280, 130, 10, 0, Math.PI*2);
ctx.fillStyle = "#000000";
ctx.fill();
ctx.beginPath();
ctx.arc(200, 260, 90, 0, Math.PI*2);
ctx.fillStyle = "#ffffff";
ctx.fill();
ctx.beginPath();
ctx.arc(170, 240, 20, 0, Math.PI*2);
ctx.arc(230, 240, 20, 0, Math.PI*2);
ctx.fillStyle = "#000000";
ctx.fill();
ctx.beginPath();
ctx.arc(200, 265, 5, 0, Math.PI*2);
ctx.fillStyle = "#ff5b5b";
ctx.fill();
</script>
</body>
</html>
```
希望你喜欢这只可爱的大熊猫!现在请问还有其他问题吗?
阅读全文