You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Menu fade animation, fade out on mouse overconstnav=document.querySelector('.nav');/* const handleHover = function (e, opacity) { if (e.target.classList.contains('nav__link')) { const link = e.target; const siblings = link.closest('.nav').querySelectorAll('.nav__link'); const logo = link.closest('.nav').querySelector('img'); siblings.forEach(el => { if (el !== link) el.style.opacity = opacity; }); logo.style.opacity = opacity; }}; */// these don't work as we need to pass a function into the second param of addEventListener()// instead of invoking a function// nav.addEventListener('mouseover', handleHover(e, 0.5));// nav.addEventListener('mouseout', handleHover(e, 1));// one solution/* nav.addEventListener('mouseover', function (e) { handleHover(e, 0.5);}); */// but we can do better with bind() methodconsthandleHover=function(e){if(e.target.classList.contains('nav__link')){constlink=e.target;constsiblings=link.closest('.nav').querySelectorAll('.nav__link');constlogo=link.closest('.nav').querySelector('img');siblings.forEach(el=>{if(el!==link)el.style.opacity=this;// this has now been changed to opacity});logo.style.opacity=this;}};// passing "arguments" into handlersnav.addEventListener('mouseover',handleHover.bind(0.5));nav.addEventListener('mouseout',handleHover.bind(1));// Handler function can only have one real argument (`function (e)` in this case).// If we want to pass additional argument into this function, we use `this` like// we did here. If we want to pass multiple values, then we can pass in an array// or an object into `bind()`.