Jump to content
Search Community

maxbaum

Members
  • Posts

    6
  • Joined

  • Last visited

Posts posted by maxbaum

  1. k, i solved this by using :

     

    let square = document.getElementById("square")
    //do animation
    this.Timeline.to(square, 1, { height: 0, y: 15/*half of the y of your svg viewbox*/ })
    this.Timeline.to(square, 1, { height: 30/*maxheight of your svg viewbox*/, y: 0 })
  2. Hi there, i have a timelineMax with many animations added.

    when i click a button i want reset the timeline and add completly new animations to the timeline so i do:

    timeline.clear()

    timeline.to(myAnimation)

    timeline.restart()

    unfortunately some svgs are stuck in the middle of the former Animations, because the restart/clear doesnt wait till the end of those animation, but interrupts them.

    How can i wait till the current animation has finished and then restart/clear?

    Im not at the end of the timeline so timeline.progress() is not an option.

     

    Thank you :)

×
×
  • Create New...