D3.js用于不同形状的复合动画的链转换

时间:2013-04-03 18:00:10

标签: javascript animation d3.js transitions chained

我正在尝试做什么...

我正在玩D3以制作复合动画。我有以下最终状态:

enter image description here

基本上我想要动画连接点 - 添加第一个。然后将线绘制到第二个圆圈。绘制线后,将添加第二个圆圈。

为了增加一些视觉吸引力,我会执行其他过渡,例如在绘制线条时更改第一个和第二个圆圈的 circle 半径。

我尝试过的......

我可以添加圆圈并单独绘制线条,包括动画。但是,我不知道如何继续将转换链接在一起以形成复合动画。

read about transitions/animations,建议使用each("end")。虽然这可以用于绘制初始对象,但是在其他过渡之后才结束。

问题

  • 使用each("end", ...)正确的方法来链接转换吗?
  • 如何开始另一个动画(即开始绘制线条),同时仍然允许另一个过渡完成(即第一个圆形半径突发)。

1 个答案:

答案 0 :(得分:23)

转换更容易链接,因为d3.v3不使用“end”。请参阅注释here

例如,请查看this one

rect.transition()
  .duration(500)
  .delay(function(d, i) { return i * 10; })
  .attr("x", function(d, i, j) { return x(d.x) + x.rangeBand() / n * j; })
  .attr("width", x.rangeBand() / n)
  .transition()
  .attr("y", function(d) { return y(d.y); })
  .attr("height", function(d) { return height - y(d.y); });

这是针对同一元素的转换。对于不同的元素,请查看this one

// First transition the line & label to the new city.
var t0 = svg.transition().duration(750);
t0.selectAll(".line").attr("d", line);
t0.selectAll(".label").attr("transform", transform).text(city);

// Then transition the y-axis.
y.domain(d3.extent(data, function(d) { return d[city]; }));
var t1 = t0.transition();
t1.selectAll(".line").attr("d", line);
t1.selectAll(".label").attr("transform", transform);
t1.selectAll(".y.axis").call(yAxis);

转换附加到svg元素并从那里链接。