0

我正在为我姐姐的生日创建一个假公司的网站,我在固定背景上遇到了一点麻烦。我知道它应该很简单,只是一个附件问题:已修复,但由于某种原因它似乎不起作用。好吧,原因显然是我,但我认为你可以帮助我:)

这是网站:http ://camilleperrin.fr/BBE/ ,当您必须滚动时会出现问题(如果您的分辨率为 1920x1080,则在此页面上:http: //camilleperrin.fr/BBE/index.php?页=职业)。如果您有一个巨大的屏幕并且看不到问题,则背景图像不会停留在应有的位置,并随着滚动而下降。

这是我的代码(我得到了 Internet 的帮助,这一切都不是我自己想出来的):

CSS:

    body{
        background:url('background.jpg') no-repeat center 160px fixed;
    }

    #overallcontainer{
        padding: 70px 90px 120px 90px;
    }

    #blurcontainer {
        position: relative;
    }

    #blurbg{
        background:url('background.jpg') no-repeat center 160px fixed;
        text-align:center;
        position: absolute;
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
        z-index: 99;  
        width:800px;
        margin:0 auto;
        padding:60px;

      -webkit-filter: blur(5px);
    }

    #textContainer  {
        position: relative;     
        z-index: 100;
        background: rgba(0,0,0,0.65);
        margin:0 auto;
        color:#dde;
        width:800px;
        padding:60px;
        text-align:justify;
    }

HTML:

<div id="overallcontainer">
    <div id="blurcontainer">
        <div id="blurbg"></div>
        <div id="textContainer">
            blah blah blah
        </div>
    </div>
</div>

如果您知道如何在保留模糊文本容器的同时解决此问题,那将非常有帮助。

谢谢!

卡米尔

4

1 回答 1

0

问题是由 background-position 的 160px 顶部偏移引起的。我假设您这样做是为了防止背景干扰您的标题。但是,fixed位置保持偏移,因为它有点“卡在”视口中。我建议从您的主要内容容器中删除背景body并将其直接应用到您的主要内容容器中#overallcontainer以解决此问题:

#overallcontainer {
    padding: 70px 90px 120px 90px;
    background: url('../design/careers.jpg') no-repeat top center fixed;
    background-size: cover; /* makes sure image covers entire viewport */
}

编辑 - 另一种方法

正如评论中所讨论的,前一种方法可能不会跨越整个视口,因为#overallcontainer它具有基于内容的动态高度,并且可能小于实际视口高度,从而产生空白。

这可以通过将背景恢复到body然后创建一个特殊的标题元素来缓解,该元素通过向标题添加纯白色背景来隐藏正文背景。

改变

<img src="design/header.jpg">

<header><img src="design/header.jpg"></header>

CSS

body { 
   ...
    background: url('../design/company.jpg') no-repeat top center fixed;
    background-size: cover;
}

header {background:#FFF;}

#overallcontainer { /* no need for any styles to this div any more */ }
于 2016-02-29T11:23:07.357 回答