chrisj
1/10/2019 - 4:21 PM

Tweenlite - Create a tween

// Create a tween
var tween = TweenLite.to($box, 2, {
 x: 100,
 ease: Power1.easeInOut,
 delay: 2,
 onComplete: myFunction,
 onCompleteParams: [element, 'param2']
});