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! Share this post Link to post Share on other sites
Posted February 16, 2017 Hello I think you should use yoyo and repeat properties : http://codepen.io/classikd/pen/oBVrPe 5 Share this post Link to post Share on other sites
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 Share this post Link to post Share on other sites
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 Share this post Link to post Share on other sites