Skip to content

Instantly share code, notes, and snippets.

@carlvlewis
Last active January 26, 2019 07:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carlvlewis/921baaf5e212e24f31021f5ae2664b13 to your computer and use it in GitHub Desktop.
Save carlvlewis/921baaf5e212e24f31021f5ae2664b13 to your computer and use it in GitHub Desktop.
d3.rect - v4
<!DOCTYPE html>
<html>
<meta charset=utf-8>
<head>
<meta name="description" content="D3.js v4, transition, color, location" />
</head>
<body>
<script src="http://d3js.org/d3.v4.min.js"></script>
<!-- .attrs() -->
<script src="https://d3js.org/d3-selection-multi.v1.min.js"></script>
<script>
var svg = d3.select('body')
.append('svg')
.attrs({ width: 500, height: 200 });
svg.append('rect')
.attrs({ x: 10, y: 10, width: 80, height: 80, fill: 'red' })
.transition()
.duration(5000)
.attrs({ x: 460, y: 150, width: 40, height: 40, fill: 'blue' });
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment