Jump to content
Search Community

Vertical Sliding Menu

james182 test
Moderator Tag

Recommended Posts

Hello

This is my first post here as I am very new to GSAP and JS and would like to seek the wisdom of the GSAP Gods.

 

I am trying to have a vertical menu where the active state is a SVG rectangle which slides up or down behind the text based on which ever list item is "active".

 

I would like to use greensock to animate this, as the rectangle will need to bend in the direction of travel with elastic ease.

 

Could I please get some assistance on the best way to build this. 

See the Pen abbGJZB by james182 (@james182) on CodePen

Link to comment
Share on other sites

Hey James, welcome to the GreenSock forums! We're not gods here, just regular folks like you who have spent more time programming with GSAP :) 

 

A few notes about your demo: 

  • When figuring out what's going wrong (debugging) your browser's developer console is very helpful. You can open it by pressing F12. It shows your errors and warnings about your code.
  • It looks like you're trying to use jQuery but you didn't load it. You don't actually need it, you can just pass in a query string as the target for your tween.
  • In your HTML you have an class of active, but in your JS you are searching for something with an ID of active. In order for your JS to find the right element, they need to match (both be a class or both be an ID). I recommend using a class since you're likely going to be switching between active elements.
  • You are trying to reference a function called myFunction in your onComplete, but it doesn't exist. I recommend at least adding an empty function to make it happy :) 

With those changes made, your active element moves! 

See the Pen QWWrrXj by GreenSock (@GreenSock) on CodePen

 

However, this likely isn't what you're wanting in the end. In order to help you further, could you please describe the way you want it to animate?

 

9 hours ago, james182 said:

I am trying to have a vertical menu where the active state is a SVG rectangle which slides up or down behind the text based on which ever list item is "active".

Do you mean that you want a red rectangle the size of one navigation item to move up and down the list to be behind the active navigation item? Or something else?

Link to comment
Share on other sites

Well, you need to get the offset properly. With jQuery that'd be yPos = $(this).offset().top;. Then you can tween to that position with an elastic ease using TweenMax.to(activeBox, 1, {x:0, y:yPos, ease: Elastic.easeOut, onComplete:myFunction});.

 

Adding position: relative; to .menu-wrapper causes the #activeBox to go behind it. 

 

But how do you plan on having the box go behind it and the white/red background to also be behind the text? Or was the red/white not meant to remain? 

Link to comment
Share on other sites

The approach the the keyframers use in that demo is quite different than the approach that you're using :) They essentially did a fake version of what you're trying to do. 

 

The problem with your approach is that currently the background is essentially "attached" to the text. So layering wise you can't really put the gray box in between the two without changing your markup. It's definitely possible though. Just takes some work and using different elements for the text and the white/red background which can be a pain. How about you give it a shot, knowing that?

 

jQuery is unrelated to GSAP, both tools work together just fine (so long as you never use jQuery's .animate() lol).

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...