Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@HarryStevens
Forked from mbostock/.block
Last active February 14, 2019 23:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HarryStevens/c2c877a7e8e6bcd33a0fc1b21b31cbdf to your computer and use it in GitHub Desktop.
Save HarryStevens/c2c877a7e8e6bcd33a0fc1b21b31cbdf to your computer and use it in GitHub Desktop.
External SVG In Multipile Nodes
license: gpl-3.0
<!DOCTYPE html>
<meta charset="utf-8">
<body>
<div class="container"></div>
<div class="container"></div>
<div class="container"></div>
<div class="container"></div>
<div class="container"></div>
<script src="https://d3js.org/d3.v4.js"></script>
<script>
d3.xml("rect01.svg").mimeType("image/svg+xml").get(function(error, xml) {
if (error) throw error;
var el = xml.documentElement;
document.querySelectorAll(".container").forEach((container, container_index) => {
container.appendChild(el.cloneNode(true));
});
});
</script>
</body>
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment