在画布上的raw中绘制更多的矩形,可以通过以下步骤实现:
以下是一个示例代码:
<!DOCTYPE html>
<html>
<head>
<title>绘制多个矩形</title>
</head>
<body>
<canvas id="myCanvas" width="500" height="500"></canvas>
<script>
var canvas = document.getElementById("myCanvas");
var ctx = canvas.getContext("2d");
for (var i = 0; i < 10; i++) {
var x = Math.random() * canvas.width;
var y = Math.random() * canvas.height;
var width = Math.random() * 100;
var height = Math.random() * 100;
var color = getRandomColor();
ctx.fillStyle = color;
ctx.fillRect(x, y, width, height);
}
function getRandomColor() {
var letters = "0123456789ABCDEF";
var color = "#";
for (var i = 0; i < 6; i++) {
color += letters[Math.floor(Math.random() * 16)];
}
return color;
}
</script>
</body>
</html>
这段代码会在画布上绘制10个随机位置、大小和颜色的矩形。
推荐的腾讯云相关产品:腾讯云云服务器(CVM)和腾讯云对象存储(COS)。
领取专属 10元无门槛券
手把手带您无忧上云