代码
<script src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
<script>
window.onload {
function rectWidth() {
var width = document.getElementById('Canvas').offsetWidth;
Math.floor((Math.random() * 100) + 1);
}
function rectHeight() {
var width = document.getElementById('Canvas').offsetHeight;
Math.floor((Math.random() * 200) + 2);
}
function randColor() {
var randomColor = Math.floor(Math.random()*16777215).toString(16);
}
return rectWidth;
return rectHeight;
return randColor;
$(#rect).html("<rect width="return rectWidth;" height="return rectHeight" style=""color="return randColor"/>")}
}
</script>
</head>
<body>
<canvas id="Canvas" width="900" height="200">
<rect id="rect" width="250" height="250" style="color=blue"/></canvas>
我只想弄清楚如何改变矩形的宽度,高度和颜色。
接下来会有位置。
如何更改代码才能使其正常工作?
答案 0 :(得分:0)
如何在画布上绘制矩形的示例:
var canvas = document.getElementById("Canvas");
var ctx = canvas.getContext("2d");
ctx.beginPath();
var width = 10;
var height = 10;
var x = 0;
var y = 0;
ctx.fillStyle = "#FFF0000";
ctx.rect(x, y, width, height);
ctx.fill();
ctx.stroke();
这是一个快速的小提琴,在画布上绘制随机大小的随机彩色矩形:https://jsfiddle.net/6omtu0pg/