3

如何添加一个像下图中这样的漂亮叠加层?

在此处输入图像描述

考虑以下 HTML,我将如何添加这样的叠加层?我知道我可以在上面使用渐变,然后对角应用它,但我也可以弯曲它吗?

<div class="photostrip">
  <div class="overlay" />
  <img src="http://i.imgur.com/a21tM.jpg" />
  <img src="http://i.imgur.com/a21tM.jpg" />
  <img src="http://i.imgur.com/a21tM.jpg" />
</div>

这是我尝试过的东西(我已经使覆盖层过度饱和,因此很容易看到),但这并不是我正在寻找的形状。

body { background-color: #4b74db; }

.photostrip {
  margin: 0 auto;
  width: 185px;
  background-color: #000;  
  box-shadow: 0px 3px 7px 3px #333;
  padding: 7px;
  padding-bottom: 2px;
  position: relative;

  .overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    border-bottom-right-radius: 200px 403px;
    /* This adds the nice overlay. */
  background: -webkit-linear-gradient(top, rgba(255,255,255,0.60) 0%,rgba(255,255,255,0.05) 100%);
  }


  img {
    display: block;    
    width: 175px;
    height: 120px;
    margin: 0 auto;
    margin-top: 6px;
    margin-bottom: 11px;
  }
}
4

2 回答 2

0

这样的事情对你有用吗: http: //codepen.io/defo550/pen/Fcsxo

.photostrip {
  margin: 0 auto;
  width: 185px;
  background-color: #fff;  
  box-shadow: 0px 3px 7px 3px #333;
  padding: 7px;
  padding-bottom: 2px;

  /* Remove default list stylings*/
  list-style: none;

  /* provide a position context for our   pseudo element */
  li {
    position: relative;
  }

  img {
    display: block;  
    width: 175px;
    height: 120px;
    margin: 0 auto;
    margin-top: 6px;
    margin-bottom: 11px;
  }
}

/* overlay styles
  create pseudo element  
*/
.photostrip li:after {
        content: "";
        position: absolute;
       /* position above img */
        z-index: 5;

        width: 175px;
        height: 120px;
        top: 0;
        left: 5px;

/* overlay styles */
        background: linear-gradient(135deg, rgba(255,255,255,0.33) 0%,rgba(255,255,255,0.33) 60%,rgba(255,255,255,0) 61%,rgba(255,255,255,0) 100%);
      }

<ul class="photostrip">
 <li><img /></li>
 <li><img /></li>
 <li><img /></li>
</ul>

我将您的图像放在一个无序列表中,然后在 li (包装每个图像)上创建了一个伪元素,该元素具有背景渐变,具有上面图像的所需效果(或 close )。

您还可以在 CSS 中分别定位每个 li 以更改背景渐变。

于 2012-11-22T18:58:12.860 回答
0

我认为这接近您正在寻找的内容,您只需使用数字 http://codepen.io/anon/pen/GDvju

我刚刚添加了另一层并给了它一个左上角半径

body { background-color: #4b74db; }

.photostrip {
  margin: 0 auto;
  width: 185px;
  background-color: #000;  
  box-shadow: 0px 3px 7px 3px #333;
  padding: 7px;
  padding-bottom: 2px;
  position: relative;

  .overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    /* This adds the nice overlay. */
  background: -webkit-linear-gradient(top, rgba(255,255,255,0.60) 0%,rgba(255,255,255,0.05) 100%);
  }
  .overlay2 {
    height: 100%;
    width: 50%;
    position: absolute;
    right: 0px;
    border-top-left-radius: 300px 600px;
    background: -webkit-linear-gradient(top, rgba(0,0,0,0.60) 0%,rgba(0,0,0,0.05) 100%);
  }


  img {
    display: block;    
    width: 175px;
    height: 120px;
    margin: 0 auto;
    margin-top: 6px;
    margin-bottom: 11px;
  }
}
于 2012-11-22T19:28:28.133 回答