Share Posted January 21, 2016 Hi there I'm working through some of the concepts of GreenSock and was hoping someone could point out to me the issue with this animation. As you can see in the codepen the slider measuring the duration of the entire timeline is only about 80% through when it appears all my animations are finished. As a result, when I got to reverse the animation, there is a considerable delay before an animation kicks in. Thanks DB See the Pen mVpwNe by DB1500 (@DB1500) on CodePen Link to comment Share on other sites More sharing options...
Share Posted January 21, 2016 Hello, It appears that although the hambuger visibility is set to none, you are still tweening which adds that tween time to the total timeline duration: .to(".fa-bars", 0.5, { opacity: 1, rotation: "-180" }, "header+=1") Removing this tween from the timeline will make the timeline complete when "Contact" finishes animating in. 1 Link to comment Share on other sites More sharing options...
Author Share Posted January 21, 2016 Thanks 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