Jump to content
Search Community

multivac

Business
  • Posts

    36
  • Joined

  • Last visited

About multivac

Recent Profile Visitors

1,962 profile views

multivac's Achievements

  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

9

Reputation

  1. Thank you for the link, and the workaround. The problem comes from: timeline.then() ? Hopefully there will eventually be a cleaner way than always returning: { timeline: tl } Maybe a configuration parameter ? Thank you very much for your precious support and help, Stan
  2. Hi OSUblake, Thank you for the help. I'm using setTimeout just as an example. The web is an asynchrone world, and there are many cases where I need to include my timeline creation code in a function that returns a promise. For example when animating a video element. It's great to see that GSAP timelines are promisable. But I dont really need to wait for a timeline to be completed. I need GSAP timelines to work in vanilla javascript promises. Ex: Promise.resolve( timeline ) never resolves. It was working perfectly fine in GSAP2. Is this a bug or is it by design ? Is there a work around ? Thank you, Stan
  3. Hello GSAP team, I build complex animations and sometime need to use Promises. Just decided to migrate to GSAP 3. GSAP 2 work perfectly fine with promises. GSAP 3 doesn't. I've made 2 codepens: GSAP 2 and Promises: https://codepen.io/multivac/pen/zYxZKLM GSAP 3 and Promises: https://codepen.io/multivac/pen/xxbqEXQ Any solutions ? Ideas ? Thank you very much, Stan
  4. Is there a way to determine the instance type of objects returned by .getChildren() ? Is it a TimelineMax, TimelineMin, TweenMax, TweenMin, etc ? @Rodrigo @GreenSock ? Thank you
  5. My software nests multiple timelines. I want the users to be able to reach a sub timeline by label name. My goal is to recursively scan all nested timelines and copy their labels to the parent at the correct time. I want to extract labels only from the nested timelines I've added. If I can sort out staggers it will be possible. With Rodrigo answers it will be possible.
  6. Hello ! If a parent timeline contains staggers. Calling parent.getChildren( false, false true ) will return a "timeline" for each stagger. But these "timelines" will trigger an error if .getLabelsArray() is called on them Is there a way to get children timelines, without the ones automatically created by stagger ? Please look at the codepen. Thanks
  7. Yes ! child.startTime() was the missing part. I missed it in the doc. Thank you !
  8. Hello GSAP ! I have a parent timeline with multiple nested timelines. I want to copy the nested labels to the parent timeline. I've tried with .getChildren() and .getLabelsArray(). But I'm unable to get a child's insertion time, in order to copy the child's labels at the correct time on the parent. Any suggestions ? Cheers
  9. I'm hiring talented banner designers. You must master Greensock, JS, CSS and HTML very well, and have good design skills. Please send me your portfolio website address in a private message.
  10. multivac

    Timeline fill

    Hello team, Whenever I wish to add a few extra seconds of nothing at the end of a timeline I end up using this: timeline.to( {}, 5, {} ); It works perfectly fine. But it's ugly and not self explanatory. Is there a more elegant way to do this ? Thank you !
  11. It happens with every fonts I've tested. Google fonts included. Codepen was updated with google font. Any hints or suggestions are welcomed ! Thanks
  12. Hello GSAP ! When splitting Denavagari characters, some weird circle elements are added. Any suggestions ? Thank you
  13. Just a side note, the above code doesn't seem to work with multiple levels nested timelines.
  14. This is sooo nice @Jonathan ! It just works perfectly. Thank you for taking the time to help newbies, it's very much appreciated.
  15. @Jonathan Thank you for taking the time ! The GSAP forum team is just amazing. The ultimate goal is to explore if GSAP can eventually be used to create animations that combine the power of SplitText and filters. The SVG solution looks great ( just learned about GSAP AttrPlugin ). My guess is that it cannot be applied when using SplitText. Using CSS filters looks like the way to go. But making this work with a SplitText stagger seems like a daunting task. Does the mandatory use of "onUpdate", means that "stagger" cannot be used ? GSAP, please consider adding something for a cleaner way to tween filters. When scanning through code, the solution feels long, complex, and less intuitive than classic Tweening. These 4 lines of codes are beautiful, but they won't work var h1 = document.querySelector( "h1" ); var split = new SplitText( h1, { type: "chars" } ); var tl = new TimelineMax(); tl.staggerFrom( split.chars, 0.7, { opacity: 0, filter: "blur(5px)" }, 0.1 ); Happy Tweening!
×
×
  • Create New...