Comments pwuj started the conversationMarch 3, 2019 at 8:36pme5c7d90b-1df8-44d5-ac46-83d454226645 How do I remove/disable the on hover animation on the menu button? This is the distracting transform wiggle or wobble effect that moves the button around when you hover on it. Thanks! 2,013Support repliedMarch 4, 2019 at 2:02pmHello,try removing the following in /js/scripts.js//Parallax Burger Menu$('#burger-wrapper').mouseleave(function(e){ TweenMax.to(this, 0.3, {scale: 1}); TweenMax.to('#burger-circle, #menu-burger', 0.3,{scale:1, x: 0, y: 0}); }); $('#burger-wrapper').mouseenter(function(e){ TweenMax.to(this, 0.3, {transformOrigin: '0 0', scale: 1}); TweenMax.to('#burger-circle', 0.3,{scale: 1.3}); }); $('#burger-wrapper').mousemove(function(e){ callParallax(e); });and then hard refresh the page (Ctrl+F5)Thank you. Clapat Support Review Envato Item Support Policy Follow us! https://www.clapat.com/https://www.facebook.com/clapat.ro https://www.instagram.com/clapat.themes/https://x.com/clapatdesignhttps://www.linkedin.com/company/clapatstudiohttps://www.tiktok.com/@clapatstudio Sign in to reply ...
e5c7d90b-1df8-44d5-ac46-83d454226645
How do I remove/disable the on hover animation on the menu button? This is the distracting transform wiggle or wobble effect that moves the button around when you hover on it. Thanks!
Hello,
try removing the following in /js/scripts.js
//Parallax Burger Menu
$('#burger-wrapper').mouseleave(function(e){
TweenMax.to(this, 0.3, {scale: 1});
TweenMax.to('#burger-circle, #menu-burger', 0.3,{scale:1, x: 0, y: 0});
});
$('#burger-wrapper').mouseenter(function(e){
TweenMax.to(this, 0.3, {transformOrigin: '0 0', scale: 1});
TweenMax.to('#burger-circle', 0.3,{scale: 1.3});
});
$('#burger-wrapper').mousemove(function(e){
callParallax(e);
});
and then hard refresh the page (Ctrl+F5)
Thank you.
Clapat Support
Review Envato Item Support Policy
Follow us!
https://www.clapat.com/
https://www.facebook.com/clapat.ro
https://www.instagram.com/clapat.themes/
https://x.com/clapatdesign
https://www.linkedin.com/company/clapatstudio
https://www.tiktok.com/@clapatstudio