Skip to content

Instantly share code, notes, and snippets.

Created January 1, 2015 00:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/328db63df71026391246 to your computer and use it in GitHub Desktop.
Save anonymous/328db63df71026391246 to your computer and use it in GitHub Desktop.
Fill rect method
var canvas = document.getElementById('mycanvas');
var context = canvas.getContext('2d');
context.strokeStyle = '#0000ff';
context.lineWidth = 2;
context.beginPath();
context.fillStyle = '#00ff00';
context.fill();
context.fillRect(100, 10, 150, 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment