0

在我正在开发的网站上,我正在使用滚动关注来滚动带有页面的购物车/项目菜单。我正在使用此代码 $(function() {

var $sidebar   = $('.sidebar-scroll'),
    $window    = $(window),
    $footer    = $('.footer'), // use your footer ID here
    offset     = $sidebar.offset(),
    foffset    = $footer.offset(),
    threshold  = foffset.top - $sidebar.height(); // may need to tweak
    topPadding = 200;

$window.scroll(function() {
    if ($window.scrollTop() > threshold) {
        $sidebar.stop().animate({
            marginTop: threshold
        });
    } else if ($window.scrollTop() > offset.top) {
        $sidebar.stop().animate({
            marginTop: $window.scrollTop() - offset.top + topPadding
        });
    } else {
        $sidebar.stop().animate({
            marginTop: 0
        });
    }
});

});

问题是因为我的侧边栏是一个菜单,它的高度是可变的,这取决于用户选择添加到购物车的内容。如何修改此代码,以便我的菜单不会越过页脚,但仍可以相应地调整大小。

4

1 回答 1

1

我通过使用内容作为高度参考而不是页脚来重新编写您的代码。

工作演示:http: //jsfiddle.net/tF8Dj/

var $sidebar   = $('aside'),
    $content   = $('#content');

if ($sidebar.length > 0 && $content.length > 0) {
    var $window    = $(window),
        offset     = $sidebar.offset(),
        timer;

    $window.scroll(function() {
        clearTimeout(timer);
        timer = setTimeout(function() {
            if ($content.height() > $sidebar.height()) {
                var new_margin = $window.scrollTop() - offset.top;
                if ($window.scrollTop() > offset.top && ($sidebar.height()+new_margin) <= $content.height()) {
                    // Following the scroll...
                    $sidebar.stop().animate({ marginTop: new_margin });
                } else if (($sidebar.height()+new_margin) > $content.height()) {
                    // Reached the bottom...
                    $sidebar.stop().animate({ marginTop: $content.height()-$sidebar.height() });
                } else if ($window.scrollTop() <= offset.top) {
                    // Initial position...
                    $sidebar.stop().animate({ marginTop: 0 });
                }
            }
        }, 100); 
    });
}

该示例假设您有一个侧边栏和内容。计时器是为性能而存在的。

希望这对你有用!

编辑:我还找到了一个带有 jquery 插件的Tuts+ 教程。

于 2012-11-02T13:57:34.847 回答