滚动背景图像的鼠标滚轮

时间:2015-02-10 22:27:19

标签: background scroll parallax

我需要制作一个脚本,只需滚动鼠标即可改变背景图像的位置。文档没有要滚动的宽度。它是一个内容滑块。想法是在Android中进行视差滚动。  这是我要使用的代码:

$(window).bind("load resize scroll",function(e) {
    var y = $(window).scrollTop();
    $("body").filter(function() {
        return $(this).offset().top < (y + $(window).height()) &&
               $(this).offset().top + $(this).height() > y;
    }).css('background-position', '0px ' + parseInt(-y / 6) + 'px');
});

滚动鼠标滚轮时如何让'body'背景移动?

0 个答案:

没有答案