Olá, Pessoal!
Alguém poderia me ajudar? Meu código funciona na construção de quadrados na horizontal, mas não na vertical.
<!DOCTYPE html>
<html>
<head>
<title></title>
<canvas width = "600" heigth = "400"></canvas>
</head>
<body>
<script type="text/javascript">
function square(x,y,b,h,colorStyle,colorStroke) {
var screen = document.querySelector("canvas");
var brush = screen.getContext("2d");
brush.fillStyle = colorStyle;
brush.fillRect(x,y,b,h);
brush.strokeStyle = colorStroke;
brush.strokeRect(x,y,b,h);// body...
}
square(0,0,50,50,"green","red");
square(0,50,50,50,"yellow","red");
square(0,100,50,50,"blue","red");
square(0,150,50,50,"grey","red");
</script>
</body>
</html>
Grato!