Skip to content

Instantly share code, notes, and snippets.

@borsch
Created May 15, 2017 20:26
Show Gist options
  • Save borsch/6772878792a828e1c0919220ae6972f4 to your computer and use it in GitHub Desktop.
Save borsch/6772878792a828e1c0919220ae6972f4 to your computer and use it in GitHub Desktop.
create svg rect
var rect = document.createElementNS('http://www.w3.org/2000/svg', 'rect');
rect.setAttribute('x', x)
rect.setAttribute('y', y)
rect.setAttribute('width', width)
rect.setAttribute('height', height)
rect.setAttribute('fill', 'rgb(1, 100, 1)');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment