Created
May 15, 2017 20:26
-
-
Save borsch/6772878792a828e1c0919220ae6972f4 to your computer and use it in GitHub Desktop.
create svg rect
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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