将模糊滤镜应用于背景,不会使我的div居中

时间:2016-05-23 09:43:46

标签: html css sass

所以我在网页上的登录时有一个模糊的图像div。

到目前为止看起来像这样:

Problem..

现在,图像的模糊部分应该位于页面的中间,我的尺寸如下面的 SCSS 所示:

//Variables
$background_image: url(../img/bg.png);
$background_fallback: #C0C0C0;

body {
    padding: 0; margin: 0;
    background-image: $background_image;
    background-position: 0px 0px;
    background-repeat: repeat;
    color: #333;

    animation: bg 40s linear infinite;

    min-height: 100%;
    width: 100%;
}

.login_container {
    margin: auto;
    overflow: auto;
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    width: 40%;
    height: 60%;

    .login_container_bg {
        position: fixed;
        left: 0; right: 0; z-index: 1;
        display: block;
        background-image: $background_image;
        width: 100%;
        height: 100%;

        -webkit-filter: blur(2px);
        -moz-filter: blur(2px);
        -o-filter: blur(2px);
        -ms-filter: blur(2px);
        filter: blur(2px);
        animation: bg 40s linear infinite;
    }
    .login_container_inner {
        position: fixed;
        left: 0; right: 0;
        z-index: 2;
        margin-left: 20px; margin-right: 20px;
    }
}

@keyframes bg {
    from { background-position: 0 0; }
    to { background-position: 0 1000px; }
}

这是我使用的HTML结构:

<body>
    <div class="login_container">
        <div class="login_container_bg"></div>
        <div class="login_container_inner">
            Hello. It's me.
        </div>
    </div>
</body>

正如您所看到的,背景的模糊部分会扩展页面的宽度。我希望模糊位只是内部的宽度和高度 - 应该是页面的50%和50%(x,y)

1 个答案:

答案 0 :(得分:1)

元素的位置是视口的fixedleft:0,而不是容器。 - 已修复 元素相对于浏览器窗口定位 http://www.w3schools.com/cssref/pr_class_position.asp

将其更改为绝对定位(相对于容器)或相对于视口定位它。

编辑:尝试这样的事情。

HTML

    <div class="login_container_bg">
        <div class="login_container_inner">
            Hello. It's me.
        </div>
     </div>

CSS

.login_container {
margin: auto;
overflow: auto;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
background-image: $background_image;

.login_container_bg {
    position: absolute;
    left: 50%; 
    top: 50%;
    transform:translateX(-50%) translateY(-50%);
    z-index: 1;
    display: block;
    width: 40%;
    height: 60%;

    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);
    animation: bg 40s linear infinite;
}
.login_container_inner {
    position: absolute;
    left: 0; right: 0;
    z-index: 2;
    margin-left: 20px; margin-right: 20px;
}
}