Guest User

Untitled

a guest
Nov 21st, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function createCircle( x, y ) {
  2. var gradient = context.createRadialGradient(x, y, 0, x, y, 100);
  3. gradient.addColorStop(0, 'rgba(0, 0, 0, 0)');
  4. gradient.addColorStop(1, 'rgba(0, 0, 0, 1)');
  5. context.fillStyle = gradient;
  6. context.fillRect(0, 0, width, height);
  7. }
Add Comment
Please, Sign In to add comment