Skip to content

Instantly share code, notes, and snippets.

@Vintharas
Last active August 21, 2019 20:43
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 Vintharas/dcdc16270a6cb2e44235d6f868246c30 to your computer and use it in GitHub Desktop.
Save Vintharas/dcdc16270a6cb2e44235d6f868246c30 to your computer and use it in GitHub Desktop.
Simple example moving divs
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; }
</style>
<div></div>
<div></div>
<div></div>
</head>
<body>
<script>
// Feel free to change or delete any of the code you see in this editor!
var svg = d3.select("body").append("svg")
.attr("width", 960)
.attr("height", 500)
svg.append("text")
.text("Edit the code below to change me!")
.attr("y", 200)
.attr("x", 120)
.attr("font-size", 36)
.attr("font-family", "monospace")
d3.selectAll('div')
.style('width', '100px')
.style('height', '100px')
.style('background', 'black')
.style('position', 'relative')
.style('left', (_,i) => `${i*10}px`)
.transition()
.duration(1000)
.style('left', (_, i) => `${i*100}px`)
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment