gpt4 book ai didi

javascript - 当我在移动设备上滚动时,如何更改

转载 作者:行者123 更新时间:2023-12-03 01:30:01 25 4
gpt4 key购买 nike

I already did it on desktop, but when I try the code with mobile, it crashes for some reason

    window.onscroll = () => {
const nav = document.querySelector('#navbar');
var viewportWidth = $(window).width();
if (viewportWidth > 1020) {
if(this.scrollY <= 500) nav.className = ''; else nav.className = 'scroll';}

};

最佳答案

响应式设计往往很难使用 JS 进行模拟,因此不要使用 JS 做超出必要的事情:

window.onscroll = () => {
const nav = document.querySelector('#navbar');
nav.className = (this.scrollY <= 500) ? '' : 'scroll';
};

并使用 CSS 媒体查询来仅在移动设备上更改颜色:

#navbar.scroll {
/* when scrolling on desktop */
background-color: green;
}


@media screen and (max-width: 1019px) {
#navbar.scroll {
/* when scrolling on tablets or mobile */
background-color: red;
}
}

关于javascript - 当我在移动设备上滚动时,如何更改 <nav> 的颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51344290/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com