TweenLite absolute beginning for animations
TweenLite syntax
Method of using TweenLite
const tl = new TweenLite.Method(Element, duration, animating property);
OR
const tl = TweenLite.Method(Element, duration, animating property);
OR best and Popular way
TweenLite.Method(Element, duration, animating properties)
From above;
Method = ways of animation
Element = that element you want to animate
Duration = Amount of time that your animation takes to finish
Animating property = Various properties which you want to show in animating way
Comments
Post a Comment