1

垂直滚动页面时如何使页面背景水平滚动?

这是一个工作示例来说明我的意思。

http://www.hul.co.in/careers-jobs/

4

2 回答 2

1

他们在这个脚本中使用 JavaScript(特别是jQuery库)来完成这项工作。我建议使用 jQuery,因为它“规范化”了浏览器供应商前缀属性。

这样的事情可以让你开始,

var lastTop = 0,
    top = 0;

$(window).scroll(function () {
    top = $(document).scrollTop();

    if (lastTop !== top) {
        // If it's scrolling vertically
        // change background's x coordinate
        $(this).animate({
            'background-position-x': top;
        }, 1);

        lastTop = top;
    }
});
于 2013-08-30T14:57:06.310 回答
1

这对于纯 css 是不可能的,你必须使用 javascript。

如果你使用 jQuery,你可以使用这个:

只是基本的 HTML 标记:

<!-- HTML -->
<div id="background"></div>
<div id="content"> <!-- add some content here --> </div> 

CSS样式:

/* css */
#background {
    /* fixed position - aways on top of the screen */
    position: fixed;
    top: 0;
    left: 0;

    /* set repeat-x so it doesn't run off */
    background: url(http://dummyimage.com/3000x100/333/999.png&text=foobarfoobarfoobarfoobarfoobar) repeat-x;

    /* you MUST set width and height or it won't display */
    width: 100%;
    height: 100px;

    /* -1 to ensure it will always be in background */
    z-index: -1;
}

#content{
    width: 500px;
    margin: 0 auto;
    background: #b0b0b0;
}

JavaScript 代码:

// JavaScript (using jQuery)
$(window).scroll(function () {
    // parse the value of current background position and add window.scrollY - vertical scroll (divide this for slower background scroll)
    var offset = parseInt($("#background").css("background-position-x")) + window.scrollY;
    $("#background").css("background-position", offset + "px 0px");
});

如果您想在工作中查看此代码,请查看此jsFiddle

如果您想避免使用 jQuery,我已将相同的代码转换为在纯 js 中工作:jsFiddle

于 2013-08-30T15:57:30.403 回答