Skip to content

Instantly share code, notes, and snippets.

@marimiya
Last active August 29, 2015 14:27
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 marimiya/7eb660a22168deb2c5a4 to your computer and use it in GitHub Desktop.
Save marimiya/7eb660a22168deb2c5a4 to your computer and use it in GitHub Desktop.
Circle tutorial #1

円で遊ぶ

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Circle test 1</title>
</head>
<body>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8">
// <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.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()
.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