Share Posted October 13, 2021 Hello, all. I am working on a site where there are various elements that I want to have a repeatable behavior on their entering of the viewport. For example, each section has text that needs to turn red once it is visible in the viewport as you scroll. I have used the basic example from the docs and it works as expected with the triggering event causing the text to change. The issue is that the trigger seems to then affect EVERY instance. So instead of scrolling and seeing the text change, after the first triggering, all of ".go-red" elements have completed their tween. gsap.to(".go-red", 1.5, { scrollTrigger: ".go-red", color: "red" }); I am sure there is a simple way to do this that doesn't involve id based triggering but it is stumping me. Any help is appreciated. See the Pen MWvwBPQ by panoonan (@panoonan) on CodePen Link to comment Share on other sites More sharing options...
Solution Solution Share Posted October 13, 2021 Hey there welcome to the forums! This is an easy thing to get confused by. You're looking for a loop. See the Pen eYENLLw by GreenSock (@GreenSock) on CodePen This article is a good read if you want to avoid common mistakes 4 Link to comment Share on other sites More sharing options...
Author Share Posted October 13, 2021 I should have started with the "are you a bonehead?" article! Thank you so much. This is entirely what I was after! 2 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