gpt4 book ai didi

javascript - d3 转换后调用函数

转载 作者:行者123 更新时间:2023-11-29 09:55:04 24 4
gpt4 key购买 nike

这是我的代码:

var text = container.append('text');
text.text('text')
.attr('transform',function(){
return "translate(" + x1 + "," + y1 + ")"
})
.transition()
.attr('transform',function(){
return "translate(" + x2 + "," + y2 + ")";
});
addTextBackground(text);

将文本传递给函数 addTextBackground,我发现转换属性中的值仍然是 x1、y1 而不是 x2、y2。似乎在过渡之前调用了 addTextBackground。如何在转换后调用它?

谢谢

最佳答案

我想通了。使用 each('end',callback) 像:

text.text('text')
.attr('transform',function(){
return "translate(" + x1 + "," + y1 + ")"
})
.transition()
.attr('transform',function(){
return "translate(" + x2 + "," + y2 + ")";
})
.each('end',function(){addTextBackground(d3.select(this))});

关于javascript - d3 转换后调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13795610/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com