是否可以使用CSS过滤器仅模糊图像的特定部分?

时间:2015-05-26 22:42:55

标签: css

我有一个背景图片,想要模糊它的特定部分而不影响整个图像?例如,只有左下角,中间或右上角?有可能这样做吗?

1 个答案:

答案 0 :(得分:9)

不幸的是,仅使用CSS无法实现此目的。您可以通过在包含背景图片的同一容器中添加额外的absolute元素来实现目标。

可能是这样的。

$(document).ready(function() {
  $('button').click(function(e) {
    $(".blurry").css('background-color', 'white')
      .css('opacity', '.7')
      .css('box-shadow', 'white 0px 0px 20px 20px');
  });
});
.wrapper {
  width:500px;
  height:150px;
  position:relative;  
}

#brand {
  width:500px;
  height:150px;
  display:inline-block;
  background-image:url("https://i.stack.imgur.com/ZeQzt.jpg?s=328&g=1");
  background-repeat: no-repeat;
  background-size: 100%;
}

.blurry {
  width:100px;
  height:50px;
  position:absolute;
  left:30px;
  bottom:25px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div>
  <div class="wrapper">
    <a id="brand"></a>
    <div class="blurry"></div>
  </div>  
</div>

<button>blur</button>