Jump to content
Search Community

Problem creating an Open/Close Nav Toggle

amanfromsolan test
Moderator Tag

Go to solution Solved by OSUblake,

Warning: Please note

This thread was started before GSAP 3 was released. Some information, especially the syntax, may be out of date for GSAP 3. Please see the GSAP 3 migration guide and release notes for more information about how to update the code to GSAP 3's syntax. 

Recommended Posts

  • Solution

You should never set an event listener like this unless you are trying to overwrite/prevent some type of behavior. The "=" sign sets a value, so it will overwrite anything that was previously set. Use .addEventListener() or jQuery's .click() instead.

button.onclick = function() {
  slideUpAnimation.play(0);
}

But that's not the real issue. Your if statement is only being evaluated once. Here's a simple way to toggle animations.

See the Pen NROjgN?editors=0010 by osublake (@osublake) on CodePen

 

I explain how that works in this thread.

http://greensock.com/forums/topic/13268-how-to-toggle-tweens-in-a-dry-fashion/

 

.

  • Like 3
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...