Share Posted July 10, 2017 please Teach me how to Write TimeLine instead of TweenMax in codepen tnx. See the Pen xqqyaE by PointC (@PointC) on CodePen Link to comment Share on other sites More sharing options...
Share Posted July 10, 2017 Hi @milika! I am not sure what is wrong with your code? Why would you want to use TimeLine instead of a Tween? Link to comment Share on other sites More sharing options...
Author Share Posted July 10, 2017 hi @Dipscom Because I want to influence a few <Div> at the same time Link to comment Share on other sites More sharing options...
Share Posted July 10, 2017 Ok, well, not sure what you have in mind but, for you to use a Timeline instead of a Tween is as simple as: buttons.click(function() { var i = $(this).index(".but"); var tl = new TimelineLite(); tl.to(".box", 1, {autoAlpha:0}); tl.to(boxes[i], 1, {autoAlpha:1}); }); I was having a chat with someone else just the other day about something that might be related. Why don't you have a look, might be worth it: 1 Link to comment Share on other sites More sharing options...
Author Share Posted July 11, 2017 tnx @Dipscom The code sample was excellent.I want to add the Time Line Code to codepen. To learn better 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