如何使用变量设置补间持续时间?

时间:2016-03-29 14:47:38

标签: variables createjs tween tweenjs

var root = this;
function go(){
    createjs.Tween
        .get(root.mvpano, {override:true} )
        .to({x:100}, duration: **here I want  to place a variable**, createjs.Ease.cubicOut);
};

这样......可以使用变量来设置补间持续时间吗?

1 个答案:

答案 0 :(得分:0)

您可以将变量放入任何属性(请参阅this fiddle)。请注意,创建补间后,如果变量发生更改,则补间不会。

function go(duration, position){
    createjs.Tween
        .get(s, {override:true} )
        .to({x:position}, duration, createjs.Ease.cubicOut);
};