Drawing Squares With Html5 on an Html5 Canvas
by Coder0806 in Circuits > Computers
1715 Views, 7 Favorites, 0 Comments
Drawing Squares With Html5 on an Html5 Canvas
In the last tutorial we made an html5 canvas.So what is a canvas without stuff on THAT canvas.So when creating a shape you would probably want color RIGHT? to make a fill color you need to have some code that looks like this -
ctx.fillStyle = "#F00000";
That will set the fill color to black, but you won't see anything because we didn't draw the square yet the code for a square is -
ctx.fillRect(0,0,50,50);
That will draw a square at the coordinates 0X 0Y and the width would be 50 so the height must be 50.
Good now we can look at the whole html5 file and that will look like this -
<html>
<canvas id = "canvas" width = "400" height="400"></canvas>
<script>
var c = document.getElementById("canvas");
var ctx = c.getContext("2d");
ctx.fillStyle = "#F00000";
ctx.fillRect(0,0,50,50);
</script>
</html>