0

尝试使用滚动位置更改正文背景位置。背景图像具有以下设置:

 background: #fff url(images/bg.png) center 100% no-repeat; background-attachment:fixed;    

我在那个页面上有一个高度为 120 像素的页脚。当滚动到达带有鼠标滚轮或滚动条的页脚时,我正在尝试更改正文背景位置(y 轴)。

编辑

我已经设法使它适用于鼠标滚轮和酒吧,以防有人需要在“固定”背景之外制作页脚。

$(window).scroll(function() {
        var def_bg_pos = 300;
        var footer = $(document).height() - 120; // footer height

        if($(window).scrollTop() + $(window).height() > footer) {
            var counter = ($(window).scrollTop() + $(window).height()) - footer;
            $('body').css('background-position', 'center '+ ((counter * -1) - def_bg_pos) + 'px');
        }
        else
            $('body').css('background-position', 'center -'+def_bg_pos+'px');
    });

<body style="background: #fff url(images/bg.png) center -300px no-repeat; background-attachment:fixed;">
4

0 回答 0