您好,事实证明我有以下代码将图像放在boostrap 4后面,但我不知道如何在不影响内容的情况下对其进行模糊效果,如这段代码所示:
html,body{
height: 100%;
width: 100%;
}
body{
/* The image used */
background-image: url(http://www.fondos10.net/wp-content/uploads/images/fondos10.net-3d-832.jpg) ;
/* Full height */
height: 100%;
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
filter: blur(5px);
}
.vdivide [class*='col-6']:not(:last-child):after {
background: #e0e0e0;
width: 1px;
content: "";
display:block;
position: absolute;
top:0;
bottom: 0;
right: 0;
min-height: 70px;
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<div class="container-fluid h-100 ">
<div class="row h-100 justify-content-center align-items-center">
<div class="card col-8">
<div class="card-body w-100 col">
<div class="row vdivide ">
<div class="col-6 ">
<img src="http://www.fondos10.net/wp-content/uploads/images/fondos10.net-3d-823.jpg" class="w-100">
</div>
<div class="col-6">
<img src="http://www.fondos10.net/wp-content/uploads/images/fondos10.net-3d-823.jpg" class="w-100">
</div>
</div>
</div>
</div>
</div>
所以我不知道如何让它看起来不错,是否有用于引导程序的属性或者是否使用 css3 处理?. 如果你能帮助我,那将非常有帮助。谢谢。
环顾四周,我找到了解决方案,我把它留在这里,这样你就可以看到它是否正确,但目前它对我有用,它只会让它响应。
创建两个
background-image
负责放置图像和制作效果blur
的类content
,以及负责使用引导程序 4 属性将内容保持在其中心位置的类。有一种非常简单的方法可以实现这一点,您只需向具有要模糊背景的标签添加一个伪元素。例如,我建议您使用一个名为“background-blur”(或您想要的)的类,如下所示:
在 css 中,只需添加 .
在这种情况下,它
fondo-blur
是一个直接应用于任何具有背景图像的元素并且您希望它具有“模糊”效果的类。有关更多详细信息,每个属性都执行以下操作:background: inherit
将继承您分配给父级的所有属性,例如:background-image, background-size, background-color, background-position, etc
,您可以覆盖它们,但它是可选的。transform: scale()
它使其比包含元素大一点,并通过添加overflow: hidden
,我们隐藏从父元素突出的所有内容,在您的情况下为 tag<body>
。position, left, width, etc
) 用于填充父级的大小。在您的情况下,容器元素是相同的
body
,因此我将直接在 css 中将这些相同的属性添加到您的标签中,例如:你可以这样做,或者像我一开始告诉你的那样。