Jump to content
Search Community

PointC last won the day on May 1

PointC had the most liked content!

PointC

Moderators
  • Posts

    5,142
  • Joined

  • Last visited

  • Days Won

    417

Posts posted by PointC

  1. I'd go even simpler with yoyo tweens and repeatDelay. Something like this.

     

    See the Pen 63a3e8ecfaf75286961b6e2ec36abed7 by PointC (@PointC) on CodePen

     

    Just my 2 cents. YMMV. Happy tweening.

    :)

     

     

    Just FYI - the original pen that I forked had tweens with a 0.1 → 1 second duration on a timeline that was 100 seconds long. With scrub set to true they were animating super fast because they were only a tiny fraction of the duration. .1% - 1%.

    • Like 2
  2. Welcome to the forum.

     

    If you're talking about the whole path changing as you scroll, you'd move the trigger to the timeline and add a second tween to animate the stroke color as the ball animates.

     

    See the Pen 48ff3b51feeaaec506ed6260b59efa17 by PointC (@PointC) on CodePen

     

    If you meant the path would change to green only as far as the ball has traveled, you'd need a second green path that is drawn as you scroll.

     

    See the Pen f291cb8f00561f83216ca7df0680ea9b by PointC (@PointC) on CodePen

     

    Happy tweening.

    • Like 2
  3. If you want to overlap each little group of elements, I'd go with a child timeline for each group and add those to a parent. The parent then plays/reverses on click. Something like this.

     

    See the Pen jORKGax by PointC (@PointC) on CodePen

     

    The overlap is on line 47. Each child timeline is 0.45 seconds in duration so I overlapped by 0.2 seconds (approximately half way), but set everything to your liking. The nice thing with a parent timeline is you can set a timeScale too if everything is too fast or slow for your needs.

     

    Happy tweening.

    • Like 3
    • Thanks 1
  4. 10 hours ago, mvaneijgen said:

    I know there is a great post some where on the forum talking about how to "animate individual SVG points",  "SVG nodes", "path points" , but I can find it right now. 

    Is this the one you meant?

     

    • Like 3
  5. On 2/22/2024 at 9:07 AM, Cassie said:

    personally illustrator's my fave but that's down to years of muscle memory.

    +1

    except I now have to say Illustrator instead of AI otherwise everyone gets confused.  😜

    • Like 1
    • Haha 2
  6. Just FYI - your position parameters were correct in the initial demo. The overlap I saw was that font size rather than a weird overlap tween. The position parameter adjustment fix I posted would still work though.  My mistake - sorry about that. Weekend brain.

     

    It should still be much easier in a loop and using yPercent. Happy tweening. :) 

    • Like 1
  7. Yeah - it's just hard to keep track since the start of one is based on the prior one, but that one is based on the end of the prior one etc... Kinda gets weird and hard to follow with different length words and tweens.

     

    I think it might be easier to set this up in a loop and use yPercent to move the targets.  This could still present a few challenges though. Here's a fork of your demo with yPercent.

     

    See the Pen 3edf621a86455b30dd00b80ed2d18174 by PointC (@PointC) on CodePen

     

    It woks really well until the 'moment' characters start overlapping the 'time' characters. It's not a miscalculation as you can see that the 't' in time moves in unison with the 'm' in moment. The problem is the width of the m is wider than the first two letters in 'time' so it looks odd. A solution to that is adding a slight delay for the new word to move in like this.

     

    See the Pen 81a43bf9e46371fbd730053644797add by PointC (@PointC) on CodePen

     

    I think that works pretty well and the delay is a variable so you can adjust it to your liking.

     

    To further illustrate what we're seeing with the Poppins font, I've switched the first demo to use a mono spaced font with no delay. You can see that everything works perfectly since all letters are the same width.

     

    See the Pen 7ffb8c2abadabf74ee8e01ca0f2a3904 by PointC (@PointC) on CodePen

     

    Since it's all created in a loop now, it's more flexible so you can add as many words as you want and it will all work correctly. You'll still need to manually add a duplicate of the first word to the bottom of the stack in the HTML with these demos, but you could also add some code to clone it if you prefer.

     

    Hopefully this helps. Happy tweening :) 

    • Like 1
×
×
  • Create New...