gpt4 book ai didi

javascript - 拉斐尔动画回调函数不起作用?

转载 作者:行者123 更新时间:2023-11-30 17:32:22 24 4
gpt4 key购买 nike

我很可能滥用了这个回调功能,但在下面的代码中,“testCircle”在消失前没有执行任何动画。

var paper = Raphael(0, 0, 1280,600);


var testCircle = paper.circle(300, 300, 50);

testCircle.animate({
cx: 700
}, 1000, testCircle.remove())

我希望动画在圆圈被移除之前真正结束。我是否滥用了这个功能?

最佳答案

给你: DEMO

var paper = Raphael(0, 0, 1280,600);
var testCircle = paper.circle(300, 300, 50).attr('fill','red');

testCircle.animate({cx: 700}, 1000, hideCircle);

function hideCircle()
{
testCircle.remove();
}

关于javascript - 拉斐尔动画回调函数不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22748002/

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