0

我试图让一个 div 在滚动时与另一个 div 重叠。

我有一个小提琴。

我想要做的是让#wrapper 与滚动时的#header 重叠。

本质上,标题是固定的,然后包装器覆盖它。

粘性元素和 z-index 会这样做吗?

还是稍微复杂一点。

我在这里有类似的东西,但我无法让它在这个小提琴上工作(是的,我确实更改了所有 div 名称)。

注意:滚动上的淡入淡出是我稍后会解决的问题。

更新:

html,
body
{
    margin:0;
    width:100%;
}
#header
{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:auto;
    background-size:100%;
}
#header img
{
    width:100%;
    display:block;
    z-index:99;
}
#wrapper
{
    width:100%;
    background-color:lightgrey;
    z-index:100;
    position:absolute;
}
#outer
{
    margin:30px auto;
    padding-top:20px;
    position:relative;
    width:90%;
    height:1500px;
    background-color:red;
}
#inner
{
    margin:0 auto;
    width:200px;
    height:250px;
    background-color:lightblue;
    top:20px
}​

HTML页面:

<!DOCTYPE HTML>
<html lang="en-UK">
    <head>
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
        <link rel="stylesheet" type="text/css" href="DivTest2.css" />

        <title></title>
    </head>
    <body>
        <script type="text/javascript">

        $(document).ready(function()

            {var header_w=$('#header').height(); ...});

    $('#wrapper').css('margin-top',header_w+'px');

$(window).resize(function()
{
    header_w=$('#header').height();

    $('#wrapper').css('margin-top',header_w+'px');
    });
});
});</script>
    <div id="header">
    <img src="http://davesizer.com/blogs/wp-content/uploads/2010/03/eva_jump.jpg" alt="Dog">
</div>
<div id="wrapper">
    <div id="outer">
        <div id="inner"></div>
    </div>
</div>​

    </body>
</html>
4

2 回答 2

2

如果您可以使用 jQuery:

jQuery

$(document).ready(function()
{
    var header_w=$('#header').height();

    $('#wrapper').css('margin-top',header_w+'px');

    $(window).resize(function()
    {
        header_w=$('#header').height();

        $('#wrapper').css('margin-top',header_w+'px');
    });
});

CSS

html,
body
{
    margin:0;
    width:100%;
}
#header
{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:auto;
    background-size:100%;
}
#header img
{
    width:100%;
    display:block;
    z-index:99;
}
#wrapper
{
    width:100%;
    background-color:lightgrey;
    z-index:100;
    position:absolute;
}
#outer
{
    margin:30px auto;
    padding-top:20px;
    position:relative;
    width:90%;
    height:1500px;
    background-color:red;
}
#inner
{
    margin:0 auto;
    width:200px;
    height:250px;
    background-color:lightblue;
    top:20px
}​

演示


更新:

$(document).ready(function()
{
    $('#wrapper').css('margin-top'header_w+'px');

    $(window).resize(function()
    {
        header_w=$('#header').height();

        $('#wrapper').css('margin-top',header_w+'px');
    });
});
于 2012-08-13T17:17:52.727 回答
1

您可以完全按照您所说的进行,将标题的位置设置为固定。然后,您为包装器添加一个顶部边距以最初将其向下推。演示

于 2012-08-13T16:29:38.273 回答