Skip to content

Instantly share code, notes, and snippets.

@mtranggit
Last active September 23, 2017 01:25
Show Gist options
  • Save mtranggit/fde8fe9234519006a110c6d87283ec67 to your computer and use it in GitHub Desktop.
Save mtranggit/fde8fe9234519006a110c6d87283ec67 to your computer and use it in GitHub Desktop.
Animate Transitions in D3
license: mit
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v4.min.js"></script>
<style>
body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; }
#block {
background: lightgray;
border: 1px solid black;
width: 100px;
height: 100px;
}
</style>
</head>
<body>
<div id="block"></div>
<script>
d3.select('#block')
.transition()
.duration(500)
.delay(250)
.ease(d3.easeBounceOut)
.style('width', '400px')
.transition()
.duration(500)
.ease(d3.easeBounceOut)
.style('height', '600px')
.transition()
.duration(2000)
.ease(d3.easeQuadOut)
.style('background-color', 'purple')
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment