hi!
As the title says : my TweenMax.staggerFrom onCompleteAll doesnt fire!
var leftButtons = $(".btnLeft");
var rightButtons = $(".btnRight");
TweenMax.staggerFrom ( leftButtons, 1, { x:"-50", opacity:0 }, 0.5, "+=0", myCompleteAll );
function myCompleteAll()
{
alert ( "completeAll!" );
// TweenMax.staggerFrom ( rightButtons, 1, { x:"+50", opacity:0 }, 0.5 );
}
i've checked and read a few topics about it before posting but i can't find what i'm doing wrong..
you can have a look at my CodePen here
thanks a lot