CSS“玻璃阴影”效果

时间:2018-10-26 05:43:22

标签: html css

我正在尝试实现阴影效果,其中阴影就像图像本身的模糊版本:

enter image description here

我能够通过堆叠两次相同的图像并将filter: blur(20px)应用于下方的图像来实现它,但这感觉是一种效率低下的方法:

.cover-wrapper {
  position: relative;
  margin: 50px;
  width: 200px;
  height: 200px;
}

.cover {
  z-index: 1;
  border-radius: 10px;
  position: absolute;
  width: 200px;
  height: 200px;
}

.cover-shadow-wrapper {
  position: absolute;
  filter: blur(20px);
  overflow: hidden;
  height: 200px;
  width: 200px;
}

.cover-shadow {
  transform: scale(1.5)
}
<div class="cover-wrapper">
  <img src="https://picsum.photos/200/200?image=871" alt="cover" class="cover">  
  <div class="cover-shadow-wrapper">
    <img src="https://picsum.photos/200/200?image=871" alt="shadow" class="cover-shadow">
  </div>    
</div>

有没有更有效的方法?还有,这个效果实际上叫什么?

1 个答案:

答案 0 :(得分:7)

它必须是图像标签吗?

您可以使用单个div及其:: after pesudo,为它们提供相同的背景图片和属性,然后模糊:: after,您将在html中拥有一个更简单的元素

.glassy-img, .glassy-img::after {
  background-image: url(https://picsum.photos/200/200?image=871);
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  width: 200px;
  height: 200px;
}
.glassy-img::after {
  content: '';
  filter: blur(20px);
  display: block;
  position: relative;
  z-index: -1;
}
<div class="glassy-img"></div>