首页 > 其他分享 >鼠标轮滚动效果

鼠标轮滚动效果

时间:2022-09-20 09:47:29浏览次数:73  
标签:滚动 鼠标 效果 navbar item images navLink document color

    const navbar = document.querySelector('.nav-fixed');     var navLink = document.querySelectorAll(".nav-link");     var a = document.getElementById(1);     window.onscroll = () => {       if (window.scrollY > 300) {         navbar.classList.add('light');         a.src="./images/flogo.png";         navLink.forEach(function (item) {           item.style.color = "black"         })       } else {         navbar.classList.remove('light');         a.src="./images/toplogo.png";         navLink.forEach(function (item) {           item.style.color = "white"         })       }     };

标签:滚动,鼠标,效果,navbar,item,images,navLink,document,color
From: https://www.cnblogs.com/xhjk-8888/p/16709948.html

相关文章