我正在使用下面的代码,一旦它从网站顶部到达某个高度,就会向fixed
添加一个#sidebar
类,具体取决于它所在的页面(即主页,单个,页)。
以类似的方式,我想在bottom
到达容器底部(#sidebar
)时向#sidebar
添加一个#content
类。如果用户向上滚动,则应移除bottom
类,并应添加fixed
类。
目标是尝试使固定侧边栏在其容器中的其余内容到达其底部时向上移动。
的JavaScript
var threshold = 236;
if (jQuery(document.body).hasClass("home")) {
threshold = 654;
} else if (jQuery(document.body).hasClass("single") || jQuery(document.body).hasClass("page")) {
threshold = 20;
}
var scrolled = false;
jQuery(window).scroll(function () {
if (jQuery(window).scrollTop() >= threshold && !scrolled){
jQuery('#sidebar').addClass('fixed');
scrolled = true;
} else if (jQuery(window).scrollTop() < threshold && scrolled) {
jQuery('#sidebar').removeClass('fixed');
scrolled = false;
}
});
HTML
<div id="container">
<div id="content">
<div id="sidebar"></div>
<div id="masonry"></div>
</div>
</div>
答案 0 :(得分:1)
我相信这是你想要做的事情?
$(window).on("scroll", function() { // When you scroll the window, do this function
updatePosition();
});
var tester = null;
function updatePosition() {
var sidebar = $("#sidebar"); // Set #sidebar to a variable called "sidebar"
if (tester == undefined) {
// Create a tester div to track where the actual div would be.
// Then we test against the tester div instead of the actual div.
tester = sidebar.clone(true).removeAttr("id").css({"opacity" : "0" }).insertAfter(sidebar);
}
// If the tester is below the div, make sure the class "bottom" is set.
if (testPosition(tester)) {
sidebar.addClass("bottom");
console.log("Add class");
}
else {
sidebar.removeClass("bottom");
console.log("remove class");
}
}
function testPosition(sidebar) {
console.log(sidebar.offset().top + " + " + sidebar.outerHeight() +" >= " + sidebar.parent().offset().top + " + " + sidebar.parent().outerHeight());
if (sidebar.offset().top + sidebar.outerHeight() >= sidebar.parent().offset().top + sidebar.parent().outerHeight()) return true;
return false;
}
<强> HTML 强>
<div class="body">
<div class="leftBar">
La la links
<div class="floater" id="floater">
Pooper scooper!
</div>
</div>
De body
</div>
有关正在进行的操作的直观说明,请在向下滚动时查看http://jsfiddle.net/M5sMx/38/,您将看到“测试人员”对象正在做什么。