我想使用d3.js在rect和圆之间进行过渡。

我的尝试在这里:http://jsfiddle.net/8kxBW/1/

但是对我而言,这种过渡看起来并不顺利。
有谁知道如何改善过渡?

有没有简单的方法可以做到这一点?

var circleDAttribute = "m4,15.75c0,-6.90608 5.59392,-12.5 12.5,-12.5c6.90608,0     12.5,5.59392 12.5,12.5c0,6.90608 -5.59392,12.5 -12.5,12.5c-6.90608,0 -12.5,-5.59392 -12.5,-12.5z";
var rectDAttribute = "m1.75,1.75l0,40l80.25,0l-0.25,-40l-80,0z";

d3.select("#pathTransition")
     .append("svg").append("g")
        .attr("transform","translate(60,60)")
     .append("path")
            .attr("d",rectDAttribute)
            .transition()
            .duration(3000)
            .attr("fill","blue")
            .transition()
            .duration(8000)
            .attr("d",circleDAttribute);

最佳答案

superformula explorer允许您在这些形状和更多形状之间转换。

关于javascript - D3 svg-path过渡摆动(包括jsfiddle),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20082803/

10-16 22:05