Share Posted July 12, 2020 Hello 😄 First time poster here.  I'm trying to mimic the scrolling behavior of this site, where the text's vertical position lags behind the scroll position.  The effect is most obvious in the navigation menu (click the hamburger icon in the top left). You'll notice that if you scroll down quickly to the bottom of the page, it takes about two seconds for the text to catch up to the scroll position.  This looks like something I could use ScrollTrigger for. In the the docs page video at about 9:50, you can see that the orange box lags the .ghost box by one second when it has the setting scrub: 1. This is the behavior I want, except it should animate the text's vertical position on the screen.  The problem is that, unlike with the horizontal position, the vertical position of the element in the DOM doesn't change -- only the scroll position changes.  Any ideas how I can achieve this effect? Link to comment Share on other sites More sharing options...
Share Posted July 13, 2020 Hey Chris and welcome to the GreenSock forums! And thanks for supporting GreenSock by being a Club GreenSock member.  I created an way to do this sort of thing in this very unrefined demo: See the Pen 9a64fe2c157fb3b810fe419a40182e27 by GreenSock (@GreenSock) on CodePen  You should be able to use a similar approach and get it looking similar. I'd love to see your final result, especially if it's in a CodePen! 1 Link to comment Share on other sites More sharing options...
Author Share Posted July 13, 2020 That's great, @ZachSaucier!! Â I've just made it a bit more "fluid" looking by changing the ease on the const scrub animation from power1.inOut to power3.out. Â In addition, I've added a "Stationary Text" element as a stationary reference. Â This had me stumped for most of the day yesterday. I'm sure I'll be using this on many of my projects from here on out! Thanks! Â See the Pen mdVjLVv?editors=1010 by ChrisCrossCrash (@ChrisCrossCrash) on CodePen 1 Link to comment Share on other sites More sharing options...
Share Posted July 13, 2020 30 minutes ago, ChrisCrossCrash said: This had me stumped for most of the day yesterday. Ya, it took me some time to think through how to approach it  Good tweaks! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now