Advertisement
mjc65

C32

Feb 21st, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. window.onload = function () {
  2.     var drawingSurface = document.getElementById("drawingSurface");
  3.     var ctxt = drawingSurface.getContext("2d");
  4.     ctxt.lineWidth = 3;
  5.     ctxt.rect(150, 150, 250, 175);
  6.     var gradient = ctxt.createRadialGradient(200, 200,5, 250, 250,100);
  7.     gradient.addColorStop(0, "Red");
  8.     gradient.addColorStop(.5, "Orange");
  9.     gradient.addColorStop(1, "Blue");
  10.     ctxt.fillStyle = gradient;
  11.     ctxt.fill();ctxt.stroke();
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement