Jump to content
Search Community

Search the Community

Showing results for tags 'play nested timeline'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • GreenSock Forums
    • GSAP
    • Banner Animation
    • Jobs & Freelance
  • Flash / ActionScript Archive
    • GSAP (Flash)
    • Loading (Flash)
    • TransformManager (Flash)

Product Groups

  • Club GreenSock
  • TransformManager
  • Supercharge

Categories

There are no results to display.


Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Personal Website


Twitter


CodePen


Company Website


Location


Interests

Found 1 result

  1. I want to add a timeline inside another, then I want to .play the first animation an when it finish makes the other .resume because its nested inside I paused the anim1 and anim 2 because i dont want them to play separatly in the moment I start the web page, i just want to make the animation 2 runs when i call to play the animation1 as a sequence but i dont know how to take out the pause with out making the TimelineMax auto play at the start. ------------------------------------------------------------------------------------------ //here the animations are paused: var anim1= new TimelineMax({paused:true}); var anim2= new TimelineMax({paused:true}); anim2.from(element1, 1, {top:-200}); // nested animation: anim1 .from(element2, 1.2, {top:-1500}) .add(anim2) .anim2.resime(); /////////////////////////////////// I WANT TO RESUME THIS ANIMATION2 IN THIS POINT AFTER ANIMATION 1 FINISH. anim1.play() --------------------------------------------------------------------------
×
×
  • Create New...