Jump to content
Search Community

Sandeep

Members
  • Posts

    5
  • Joined

  • Last visited

Posts posted by Sandeep

  1. Thanx for the reply.

     

    The animation was like that:

    the object will be hidden initially and then it will be visible later before reaching the end of animation it should again disappear.

     

    Ya the reason was the given delay.. It got resolved.

     

    Cheers :-)

  2. Hello,

     

    I am nesting timeline.

     

    code is like:

     

     

    timeLine.to(obj1,1.2,{css:{display:"block"}})

     

    nestedTimeline1 = new TimelineMax({repeat:1});

     

    // initially obj2 is with opacity :0

     

    nestedTimeline1.append(TweenLite.to(obj2,1.4,{css:{opacity:1,left:187,bottom:108}}))

    nestedTimeline1.append(TweenLite.to(obj2,.5,{css:{opacity:0}}),-.8)

     

    timeLine.append(nestedTimeline1);

     

     

    when i do:

    timeLine.totalProgress(0);

     

    my animation will start from first. But the issues is obj2 opacity will not be reset to 0.

     

    i am not able to understand why this issue is coming???

     

    any solution will be greatly appreciated..

  3. Hi,

     

    Let me congratulate GreenSock for the hard work and success.

     

    My question is, how to do next and previous in TimelineMax. ?

     

    I am able to play,pause,reverse and resume but how to go to the next/previous frame of the animation?

     

    any help will be highly appreciated.

×
×
  • Create New...