gpt4 book ai didi

javascript - 响应式上的非事件 jquery

转载 作者:行者123 更新时间:2023-11-29 21:16:40 28 4
gpt4 key购买 nike

我的 js 中有这个脚本,我在滚动时更改了导航颜色,导航变成了白色。当我想停用脚本时,我会尝试响应

$(document).ready(function(){       
var scroll_start = 0;
var startchange = $('.change-col-nav');
var offset = startchange.offset();
if (startchange.length){
$(document).scroll(function() {
scroll_start = $(this).scrollTop();
if(scroll_start > offset.top) {
$(".navbar-inverse").css({
"background-color": "#fff",
"border-bottom": "1px solid #febe10",
"transition": "all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000)"


});
}

else

{
$('.navbar-inverse').css({
'background-color': 'transparent',
"border-bottom": "0",
});
}

});
}
});

我想在最小宽度 768 最大宽度 991 时停用此脚本,我该怎么做?

最佳答案

将它包裹在一个 if 中,像这样:

$(document).ready(function(){  

// ... more code here

$(document).scroll(function() {

if ($(window).width() > 768 && $(window).width < 991) {
return;
}

// .... rest of your normal code here
})
})

关于javascript - 响应式上的非事件 jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39169304/

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