我想通过jQuery获得此网页的效果,以便在滚动时“加载”内容。例: enter link description here
$(window).scroll(function() {
var scroll = $(window).scrollTop();
if (scroll >= 50) {
$(".row").addClass("active");
}
else {
$(".row").removeClass("active");
}
});
我有一个具有全局效果的codepen,但我想对每个面板做。我的想法是,面板在滚动的不同高度加载加载,就像在示例的web中一样 enter link description here