Hi,
I have following Problem. My fade in effect function but on Start it shows the last image overlap on first image.
TweenLite.to("#blackimg", 0.1, {autoAlpha:0});
TweenLite.to("#blackimg", 0.1, {autoAlpha:1, delay:0});
TweenLite.to("#redimg", 1, {autoAlpha:0});
TweenLite.to("#redimg", 1, {autoAlpha:1, delay:4});
TweenLite.to("#blueimg", 1, {autoAlpha:0});
TweenLite.to("#blueimg", 1, {autoAlpha:1, delay:6});
TweenLite.to("#greenimg", 1, {autoAlpha:0,});
TweenLite.to("#greenimg", 1, {autoAlpha:1, delay:8});
Thanks