Facebook
From ja, 4 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 135
  1.         window.onload = setup2d;
  2.  
  3.         function setup2d() {
  4.             const canvas = document.getElementById("my-canvas");
  5.             const context = canvas.getContext("2d");
  6.             context.fillStyle = "rgb(200,0,0)";
  7.             context.fillRect(10,10,100,100);
  8.             context.fillStyle = "rgb(0,200,0)";
  9.             context.fillRect(20,20,100,100);
  10.             context.fillStyle = "rgb(0,0,200)";
  11.             context.fillRect(30,30,100,100);