问题描述
我正在创建一个简单的导航栏,当它到达首页(“ .hero”)末尾时,它将切换背景(通过“ .nav-bg”类)。它在Firefox / Chrome上工作10/10,但在Edge和Safari上不工作。 我不知道为什么。
代码:
const observer = new IntersectionObserver(entries =>{
document.querySelector(".navbar").classList.toggle("nav-bg",entries[0].intersectionRatio < 0.1);
},{
threshold: 0.1
});
observer.observe(document.querySelector(".hero"));
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)