Skip to content

Instantly share code, notes, and snippets.

@kkabetani
Created March 13, 2015 16:09
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 kkabetani/1182e927ae1358ef783e to your computer and use it in GitHub Desktop.
Save kkabetani/1182e927ae1358ef783e to your computer and use it in GitHub Desktop.
d3.js training(each) By using dotinstall
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>D3.js の練習</title>
</head>
<body>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script>
var dataset = [11, 25, 45, 30, 33];
var w = 500;
var h = 200;
var svg = d3.select("body").append("svg").attr({width: w, height: h});
svg.selectAll("circle")
.data(dataset)
.enter()
.append("circle")
.transition()
.delay(function(d, i) {
return i * 300;
})
.duration(1000)
.ease("bounce")
.each("start", function() {
d3.select(this).attr({
fill: "green",
r: 0,
cy: h
});
})
.attr({
cx: function (d, i) { return 50 + (i * 100); },
cy: h / 2,
r: function(d) { return d; },
fill: "red"
})
.each("end", function() {
d3.select(this)
.transition()
.duration(800)
.attr({
fill: "pink",
r: 0,
cy: 0
});
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment