一旦转换完成,我想给一个对象一个属性。我只是按如下方式更新图像位置:
tmp.transition().duration(1000)
.attr("transform", function(d) {return 'translate(' +
coordinates[d].x +',' +
coordinates[d].y + ')'})
一旦完成,我想给对象 tmp 一个属性“moved”,其值为“no”。我试过:
tmp.transition().duration(1000)
.attr("transform", function(d) {return 'translate(' +
coordinates[d].x +',' +
coordinates[d].y + ')'}).end('moved', 'no')
但没有成功。有小费吗?谢谢,