这个jQuery代码运行良好,但我想实现一个固定点,我想用一个相对点替换510,来自css:#content
var _rys = jQuery.noConflict();
_rys("document").ready(function () {
_rys(window).scroll(function () {
if (_rys(this).scrollTop() > 510) {
_rys('.navigation').addClass("fixed");
} else {
_rys('.navigation').removeClass("fixed");
}
});
});
我转换了这段代码,但它不起作用,我不知道为什么:) 提前感谢您的帮助。
jQuery(document).ready(function() {
var aboveHeight = $('header').outerHeight();
$(window).scroll(function(){
if ($(window).scrollTop() > aboveHeight){
$('.navigation').addClass("fixed");
}
else {
$('.navigation').removeClass("fixed");
}
});
});
工作版本:感谢 Dinesh Kumar DJ
jQuery(window).load(function() {
var aboveHeight = jQuery('#content').offset().top;
console.log(jQuery('#content'));
jQuery(document).scroll(function(){
if (jQuery(window).scrollTop() > aboveHeight){
jQuery('.navigation').addClass("fixed");
} else {
jQuery('.navigation').removeClass("fixed");
}
}); });