Jump to content
Search Community

pieterm

Business
  • Posts

    6
  • Joined

  • Last visited

Posts posted by pieterm

    Time

    const openMenu = gsap.timeline();
    openMenu.to("#main-nav", {
        duration: .6,
        y:'100%',
        ease: Power4.easeOut,
    });
    openMenu.pause();
    
    $('.open-menu').on("click", function(){
        $(this).toggleClass('active');
        if($(this).hasClass('active')){
            openMenu.play().timeScale(1);
        }
        else {
            openMenu.reverse().timeScale(2);
        }
    });

    Hi guys, 

    I'm trying to increase the speed for the timeline reverse. When I try it like shown in my code the reverse does nothing. When I remove the timeScale for the reverse it does reverse but in the same speed as the initial playing speed. Can anyone point me in the right direction? 
    Thanks in advance,

    Pieter

×
×
  • Create New...