Skip to content

Instantly share code, notes, and snippets.

@shannondussoye
Created September 6, 2017 04:02
Show Gist options
  • Save shannondussoye/661039781410b341a6835a0b8c55490a to your computer and use it in GitHub Desktop.
Save shannondussoye/661039781410b341a6835a0b8c55490a to your computer and use it in GitHub Desktop.
drop effect
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style type="text/css">
svg {
background-color: #4d4d4d;
width: 500px;
height: 500px;
}
circle {
fill: #b2182b;
}
</style>
</head>
<body>
<svg></svg>
</body>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script type="text/javascript">
var svg = d3.select("svg")
// X coordinates of 25 circles
var coordsX = [10, 30, 50, 70, 90, 110, 130, 150, 170,
190, 210, 230, 250, 270, 290, 310, 330,
350, 370, 390, 410, 430, 450, 470, 490]
svg.selectAll("circle")
.data(coordsX)
.enter().append("circle")
.attr("cx", function(d) {return d})
.attr("cy", 10)
.attr("r", 10)
d3.selectAll("circle")
.transition()
.delay(200)
.duration(1000)
.attr("cy", "490");
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment