如何使用透明的深色背景使此图像模糊

时间:2016-08-04 03:29:53

标签: html css image css3 blur

我想用css实现如下图像的图像。我的意思是我想让图像背景出现但在前面图像应该是透明的。我的意思是它应该像模糊一样被覆盖。我想达到如下图像。

image



img {
  -webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
filter: blur(5px);
position:fixed;
}

<div><img src="http://i.imgur.com/v06GqMK.jpg" /></div>
&#13;
&#13;
&#13;

3 个答案:

答案 0 :(得分:2)

您可以使用CSS伪元素或其他html元素来实现此目的。 这是一个使用伪元素的例子:在

之前

&#13;
&#13;
.blur {
  position: relative;
  display: inline-block; /* make the div not 100% */
}
/* the 'blur' effect */
.blur:before {
  content: '';
  background-color: #000;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}
.blur img {
  display: block; /* remove bottom space */
}
&#13;
<div class="blur">
  <img src="http://i.imgur.com/v06GqMK.jpg" />
</div>
&#13;
&#13;
&#13;

答案 1 :(得分:1)

这就是你想要的:

&#13;
&#13;
.container {
  background: url("https://d36ai2hkxl16us.cloudfront.net/thoughtindustries/image/upload/a_exif,c_fill,w_750,h_361/v1426633725/eq54w9myfn6xfd28p92g.jpg") no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  width: 750px;
  height: 361px;
  position: relative;
  text-align: center;
}

.container::before {
  content: "";
  display: block;
  -webkit-filter: blur(1px) brightness(0.5);
  -moz-filter: blur(1px) brightness(0.5);
  -ms-filter: blur(1px) brightness(0.5);
  -o-filter: blur(1px) brightness(0.5);
  filter: blur(1px) brightness(0.5);
  position: absolute;
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  background: inherit;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 10;
  padding-top: 50px;
}

.title {
  font-family: arial;
  font-size: 3em;
  color: gold;
  font-weight: 900;
  margin: 20px;
}

.text {
  font-family: arial;
  font-size: 2em;
  color: white;
  font-weight: 100;
  padding: 20px;
  border: 1px solid gray;
  display: inline-block;
  width: 40%;
}
&#13;
<div class='container'>
  <div class='content'>
    <div class='title'>Content Marketing</div>
    <div class='text'>6 Essential Elements You Can't Ignore</div>
  </div>
</div>
&#13;
&#13;
&#13;

答案 2 :(得分:0)

User this

<!DOCTYPE html>
<html>
<head>
<style>
div.background {
  background: url(klematis.jpg) repeat;

  border: 2px solid black;
  -webkit-filter: blur(2px);
-moz-filter: blur(2px);
-o-filter: blur(2px);
-ms-filter: blur(2px);
filter: blur(2px);
}

div.transbox {
  margin: 0px;
  background: #fff;
  border: 1px solid black;
  opacity: 0.5;

}

div.transbox p {
  margin: 5%;
  font-weight: bold;
  color: #000000;
}
</style>
</head>
<body>

<div class="background">
  <div class="transbox">
    <p>This is some text that is placed in the transparent box.</p>
  </div>
</div>

</body>
</html>
相关问题