在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;);
});
答案 0 :(得分:0)
尝试使用DIV并使用position:fixed
和bottom:0px;
。