gpt4 book ai didi

jquery - $(window).scroll 函数只执行一次

转载 作者:行者123 更新时间:2023-12-01 01:06:49 36 4
gpt4 key购买 nike

您好,我有这个脚本,我想要它

$(window).scroll(function(){

var FromTop = $(window).scrollTop(); //scroll margin from top
var RightWrapper = $('.right_wrapper').height(); // Right wrapper height

var Margin = false;

var ConentHeight = $('.content_wrapper').height() + RightWrapper; //content height

if(FromTop > 125 && RightWrapper < 500){
$('.right_wrapper').addClass('right-fixed-top');
Margin = true;
}else{
$('.right_wrapper').removeClass('right-fixed-top');
}

if(Margin){ // <<<<<<PROBLEM IS HERE each scroll
$('.content_wrapper').css({height:ConentHeight+'px'});
}

});

$('.content_wrapper').css({height:ConentHeight+'px'}); 仅第一次。

最佳答案

Margin 的值替换为 false:

$(window).scroll(function(){

var FromTop = $(window).scrollTop(); //scroll margin from top
var RightWrapper = $('.right_wrapper').height(); // Right wrapper height

var Margin = false;

var ConentHeight = $('.content_wrapper').height() + RightWrapper; //content height

if(FromTop > 125 && RightWrapper < 500){
$('.right_wrapper').addClass('right-fixed-top');
Margin = true;
}else{
$('.right_wrapper').removeClass('right-fixed-top');
}

if(Margin){
$('.content_wrapper').css({height:ConentHeight+'px'});
Margin = false;
}

});

关于jquery - $(window).scroll 函数只执行一次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31164216/

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