> $('#topBtn').click(function(event) { $('html,body').animate({scrollTop:0}, 500); }); //导航菜单 const btn = document.getElementById('btn'); const tooltip = document.getElementById('tooltip'); btn.addEventListener('mouseover', () => { tooltip.style.display = 'block'; }); btn.addEventListener('mouseout', () => { tooltip.style.display = 'none'; }); //底部菜单效果 function showHideMenu(obj){ var footNav=document.getElementById('footNav'); var footMask=document.getElementById('footMask'); var clickMenu=document.getElementById('clickMenu'); clickMenu.addEventListener('click',function(){ if(footNav.style.display=="none"){ footNav.style.display="block" footMask.style.display="block" }else{ footNav.style.display="none" footMask.style.display="none" } },false); footMask.addEventListener('click',function(){ footNav.style.display="none" footMask.style.display="none" },false) } showHideMenu('clickMenu'); clickVcode()