Jump to content
Search Community

Mondula

Members
  • Posts

    4
  • Joined

  • Last visited

Mondula's Achievements

0

Reputation

  1. No, it depends on user actions if I want to reverse the master timeline or just part of it. So, I probably should structure things differently. var prologue = new TimelineLite({paused: true}); var epilogue = new TimelineLite({paused: true}); var foo = new TimelineLite({paused: true}); prologue.eventCallback('onComplete', function () { foo.eventCallback('onComplete', function () { epilogue.play(); }).play(); }).play(); // later foo.reverse(); What do you think? Is there a simpler way? Thanks for your help.
  2. Hi, thanks for your support and sorry for not getting back to you sooner. Here's a modified codepen from the SplitText collection: http://codepen.io/anon/pen/MmWwxV I added a reverse button. As you can see the animation is not reversing cleanly. Why is that? Thanks again for your help!
  3. Thanks. So this should work. Could this be different if I use the SplitText plugin for the timeline I want to reverse? Thanks for your help.
  4. Hi, is there a way to reverse a TimelineLite instance nested in another TimelineLite instance independently of the master timeline? To illustrate: var master = new TimelineLite({paused: true}); var a = new TimelineLite(); var b = new TimelineLite({paused: true}); var c = new TimelimeLite(); master .add(a) .add(b.play()) .add(c); master.restart(); // ... later b.reverse() // <- this does not seem to work Thanks. Any help is appreciated.
×
×
  • Create New...