0

我试图达到以下效果: 带阴影和彩色横幅的盒子

我的代码如下:

.box {
  background: #fff;
  width: 600px;
  height: 100px;
  position: relative;
  z-index: 999;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.75);
}

.box::after {
  background: linear-gradient(to right, #00a1e4 25%, #ff9a00 25%, #ff9a00 50%, #00a525 50%, #00a525 75%, #8c449d 75%);
  position: absolute;
  content: "";
  height: 10px;
  right: 0;
  left: 0;
  bottom: -10px;
  z-index: 1;
}
<div class="box">
</div>

在上面的例子中,伪元素出现在盒子阴影的顶部,我怎样才能让阴影出现在伪元素的顶部?

这是codepen上的示例

4

1 回答 1

1

您可以在伪内部重绘阴影:

.box {
  background: #fff;
  width:600px;
  height:100px;
  position: relative;
  z-index: 999;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.75);
}

.box::after {
    background: linear-gradient(to right, 
      #00a1e4 25%, 
      #ff9a00 25%, 
      #ff9a00 50%, 
      #00a525 50%, 
      #00a525 75%, 
      #8c449d 75%);
    position: absolute;
    content: "";
    height: 10px;
    right: 0;
    left: 0;
    bottom: -10px;
    z-index: 1;
  box-shadow: inset 0 5px  4px -3px rgba(0, 0, 0, 0.75);
}
<div class="box">
  
</div>

你也可以使用 mix-blend-mode :

.box {
  background: #fff;
  width:600px;
  height:100px;
  position: relative;
  z-index: 999;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.75);
}

.box::after {
    background: linear-gradient(to right, 
      #00a1e4 25%, 
      #ff9a00 25%, 
      #ff9a00 50%, 
      #00a525 50%, 
      #00a525 75%, 
      #8c449d 75%);
    position: absolute;
    content: "";
    height: 10px;
    right: 0;
    left: 0;
    bottom: -10px;
    z-index: 1;
 mix-blend-mode:multiply;
}
<div class="box">
  
</div>

于 2020-11-06T15:24:58.563 回答