Hi All,
As you can see in the Codepen demo that the hamburger menu is working fine if user clicks on the menu icon. However, what I am looking is to close the burger menu with the same reverse animation if user clicks on any of the hyperlinks before proceeding to the nextpage/link. Can anyone please let me know how to do it?
menu test (codepen.io)
$('.hamburger').on("click", function(e){
$('.hamburger.active').not(this).removeClass('active');
You could just call everything you call on click of the hamburger on click of the links, but first thing you would have to prevent the default behaviour of the event and then you would also have to add some logic to delay the changing of the page - but that is nothing we can really help with, as this forum is focussed on GSAP specific questions.
As a starting point, this might help.
https://stackoverflow.com/questions/11510478/click-delay-before-navigating