+ 2
Write the code necessary to create a 300 pixel by 300 pixel <canvas>. Within it, paint a blue 100 pixel by 100 pixel square with
Easy way
3 Respostas
+ 1
An easiest way will be to look on my codes.
+ 4
<canvas id="c" width="300" height="300"></canvas> <script> var canvas = document.getElementById( "c" ); var drawing_context = canvas.getContext( "2d" ); drawing_context.fillStyle = "blue"; drawing_context.fillRect( 50, 50, 100, 100 ); </script>
+ 2
Don't ask for code. Try to do yourself.