1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
   | <!DOCTYPE html> <html> <body>
  <canvas id="myCanvas" width="500" height="500" style="border:1px solid #d3d3d3;"> Your browser does not support the HTML5 canvas tag. </canvas>
  <script> window.onload = function() {     var canvas = document.getElementById('myCanvas');     var ctx = canvas.getContext('2d');
           var gradient = ctx.createRadialGradient(250, 200, 50, 250, 200, 200);          gradient.addColorStop(0, 'red');     gradient.addColorStop(1, 'blue');
           ctx.beginPath();     ctx.arc(250, 200, 200, 0, Math.PI * 2);      ctx.closePath();     ctx.fillStyle = gradient;      ctx.fill();  } </script>
  </body> </html>
   |