block by zeffii 95800d30829ab8ab4ba6

stage fright

Full Screen

Built with blockbuilder.org

index.html

<!DOCTYPE html>
<head>
  <meta charset="utf-8">
  <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
  <script src="//coffeescript.org/extras/coffee-script.js"></script>
  <style>
  </style>
</head>

<body>
  <script type="text/coffeescript">
  

svg = d3.select("body").append("svg")

circle = svg.selectAll("circle")
    .data([32, 57, 293], (d) -> d )

circle.enter().append("circle")
    .attr("cy", 60)
    .attr("cx", (d, i) -> (i * 100 + 30) )
    .attr("r", (d) -> Math.sqrt(d) )

circle.exit().remove()
    

  </script>
</body>