Created
January 20, 2020 13:31
-
-
Save xcarpentier/fd0ec3ff1693b6a9e9e33254274b0c31 to your computer and use it in GitHub Desktop.
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
document.body.innerHTML = '<svg></svg>' | |
const SVG = document.getElementsByTagName('svg')[0] | |
const Text = document.createElementNS("http://www.w3.org/2000/svg", "text") | |
Text.setAttribute('y', 10) | |
Text.appendChild(document.createTextNode("this is the text content")) | |
SVG.appendChild(Text) | |
const Rect = document.createElementNS("http://www.w3.org/2000/svg", "rect") | |
Rect.setAttribute('x', '0') | |
Rect.setAttribute('y', '10') | |
Rect.setAttribute('width', '10') | |
Rect.setAttribute('height', '10') | |
Rect.setAttribute('style', 'fill:blue') | |
SVG.appendChild(Rect) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment