0

在 android 中,我在将 div / bg 图像保持在页面底部时遇到了很大的问题。

因此,我试图在您滚动时移动整个侧边栏项目,但我的数学/代码有些问题。

因此,我向您提供了这种尝试,以发现我的逻辑所关心的问题:

   jQuery(window).scroll(function() {
        var y = jQuery(this).scrollTop();
        var current = jQuery('.side-bar').css('background-position', '-43px', '0%' + parseInt(+y / 10) + '%');
        current();
        console.log(current;);
    });
4

1 回答 1

0

尝试使用 DIV 并使用position:fixedand bottom:0px;

于 2012-12-07T18:06:44.040 回答