Share Posted February 15, 2017 Hi guys. I'm only about a week into GSAP and I've become stuck on trying to reverse the timeline on complete, then repeat infinitely. I can only mange to do one or the other, not both. I reeaaaallly tried to fix it myself using answers from other forum posts, but the solutions offered there just don't work in my pen. I would really appreciate it if someone could fork my pen and tell me what i'm doing wrong. Thanks in advance! See the Pen XpGMZZ by IanHazelton (@IanHazelton) on CodePen Link to comment Share on other sites More sharing options...
Share Posted February 16, 2017 Hello I think you should use yoyo and repeat properties : See the Pen oBVrPe by classikd (@classikd) on CodePen 5 Link to comment Share on other sites More sharing options...
Share Posted February 16, 2017 Hi chilledmonkeybrain Welcome to the GreenSock forum. classikd is right. You'd want to use the yoyo property along with your repeat. var tl = new TimelineMax({ repeat:-1, yoyo:true }); You can also add a repeatDelay if you like. Here's more info: repeat: https://greensock.com/docs/#/HTML5/Animation/TweenMax/repeat()/ yoyo: https://greensock.com/docs/#/HTML5/Animation/TweenMax/yoyo/ repeatDelay: https://greensock.com/docs/#/HTML5/Animation/TweenMax/repeatDelay/ Hopefully that helps. Happy tweening and welcome aboard. 4 Link to comment Share on other sites More sharing options...
Author Share Posted February 16, 2017 This is by far the most pleasant forum experience I have ever had. Looking forward to being a part of this community and hopefully one day, giving back. Thank you very much both of you! 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