1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Tweet Palette</title>
<script src="https://d3js.org/d3.v4.min.js"></script>
</head>
<body>
<div id='palette'>
</div>
<script>
d3.xml("palette2/palet.svg",function(node) {
//return true;
//importe le curseur
var importedNode = document.importNode(node.documentElement, true);
d3.select("#palette").node().appendChild(importedNode);
});
</script>
<circle cx="50" cy="50" r="45" fill="green"
onclick="change(evt)" />
</body>
</html> |
Partager