gpt4 book ai didi

javascript - 未捕获的类型错误 : Object # has no method 'transitionTo'
转载 作者:行者123 更新时间:2023-11-30 08:52:29 25 4
gpt4 key购买 nike

将kineticjs从4.0.5升级到4.5.1后,我得到了

Uncaught TypeError: Object #<Object> has no method 'transitionTo'

以下代码适用于以前的版本:

gameLayer.transitionTo({
duration: '0.5',
opacity: 1,
callback: function() {
intervalId = setInterval(reDraw, 33);
isInteractive = true;

}
});

transitionTo 的替代函数是什么?在 4.5.1

更新

我打开了一个 issue在 Github 上,根据 the guy transitionTo已被删除并被 Tween 取代

问候,

最佳答案

您可以使用 onFinish 属性,如下所示:

 var tween = new Kinetic.Tween({
node: rect,
duration: 1,
x: 400,
y: 30,
rotation: Math.PI * 2,
opacity: 1,
strokeWidth: 6,
scaleX: 1.5,
onFinish: function() {console.log('onFinish');}
});

关于javascript - 未捕获的类型错误 : Object #<Object> has no method 'transitionTo' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16648883/

25 4 0