在TweenMax中使用变量Tweening到相对位置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在TweenMax中使用变量Tweening到相对位置相关的知识,希望对你有一定的参考价值。

If you want to tween an object relatively, but the new value changes and needs to be a variable, just cast it as a string.
  1. // Your everyday absolute tween that moves movieclip_mc
  2. // to 100 on the x axis, taking one second to do so
  3. TweenMax.to(movieclip_mc, 1, {x:100});
  4.  
  5. // A relative tween that moves movieclip_mc to a
  6. // position on the x axis 100 units/pixels greater
  7. // than movieclip_mc's current position
  8. TweenMax.to(movieclip_mc, 1, {x:"100"});
  9.  
  10. // An absolute tween like the first, but passing in
  11. // the new value with a variable
  12. TweenMax.to(movieclip_mc, 1, {x:newX});
  13.  
  14. // A tween that casts the variable as a string,
  15. // thus making it a relative tween
  16. TweenMax.to(movieclip_mc, 1, {x:String(newX)});

以上是关于在TweenMax中使用变量Tweening到相对位置的主要内容,如果未能解决你的问题,请参考以下文章

tweenMax学习笔记

GreenSock (TweenMax) 动画案例

GreenSock (TweenMax) 动画案例

tweenMax+如何让数字由初始值动画到结束的值

ie8中的Tweenmax不透明度

TweenMax动画库学习