• Resolved locker17

    (@locker17)


    Is it possible to make the toogle menu collapse on mouse moveout? (mouse leaves the button without click)

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Edson Galina Fortes

    (@glx77)

    hi @locker17 ,

    hope you’re fine ? Yes you can do that with some js and css. For exemple you can try to just add or remove the class weglot-dropdown on mouseout with js

    
    const mouseTarget = document.getElementById('mouseTarget');
    mouseTarget.addEventListener('mouseout', e => {
      e.classList.remove("weglot-dropdown");
    });

    Let me know if it help you do what you want

    Regards

    Plugin Contributor Edson Galina Fortes

    (@glx77)

    Hi @locker17

    hope you’re fine? You’re already issue your facing ? May I can help you if oyu have an url I can check the issue ?

    Regards

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Collapse Menu Button on MouseOut’ is closed to new replies.