Difference between revisions of "Flags: Worked Examples"
Jump to navigation
Jump to search
(Created page with "<pre id='shellbody' data-qtp='canvas'></pre> ==Benin== <div class='qu' data-width="150" data-height="100"> The flag of Libya, until 2011, was a simple green rectangle. Try...") |
|||
Line 22: | Line 22: | ||
ctx.fillRect(0,0,150,100); | ctx.fillRect(0,0,150,100); | ||
} | } | ||
</pre> | </pre> | ||
</div> | </div> |
Revision as of 07:01, 18 August 2021
Benin
The flag of Libya, until 2011, was a simple green rectangle.
Try the program as it is given, then change it so that the green rectangle is 150 wide.
function drawFlag(ctx) { ctx.fillStyle = 'green'; ctx.fillRect(0,0,75,100); }
function drawFlag(ctx) { ctx.fillStyle = 'green'; ctx.fillRect(0,0,150,100); }