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);
};
所以...可以使用变量来设置补间持续时间吗?
您可以将变量作为任何属性放入(请参阅this fiddle)。请注意,一旦您创建了补间,如果变量发生变化,补间也不会发生变化。
function go(duration, position){
createjs.Tween
.get(s, {override:true} )
.to({x:position}, duration, createjs.Ease.cubicOut);
};