Jump to content
Search Community

benjaminben

Premium
  • Posts

    4
  • Joined

  • Last visited

About benjaminben

benjaminben's Achievements

  1. Brilliant, this is awesome and solved my issue 100% thanks so much!
  2. Is there a way to tween a timeline beyond its duration in an infinite loop? Take the following example: const tl = gsap.timeline({ paused: true }) tl.set(thing, { x: 0 }) tl.to(thing, { x: 100 }) gsap.to(tl, { progress: 0.5 }) // X will arrive at 50 gsap.to(tl, { progress: 1 }) // X will arrive at 100 gsap.to(tl, { progress: 1.5 }) // But can we make X arrive at 50 again by looping around??
  3. This is working perfectly, thanks so much!
  4. I have a timeline wherein analytics events and accessibility-related events are both sequenced through various add() calls. When a user seeks around the timeline, I want to skip the analytics events but keep the accessibility ones. Is it possible for events/callbacks to opt into being suppressed on a case-by-case basis?
×
×
  • Create New...