0

我想使用 box-shadow 实现以下效果:

在此处输入图像描述

但我正在实现以下目标: 在此处输入图像描述

我正在使用以下代码:

<div class="progress-container"></div>
.progress-container {
  width: 100%;
  height: 11px;
  position: relative;
  background: #EAEFF5;
  border-radius: 5px;
  z-index: -1;

  box-shadow: 
    80px 0 0  #0AA693 inset, 
    500px 0 0 #FF7800 inset;
}

你可以在这里找到我的 codepen

谢谢你的帮助。

4

2 回答 2

1

我认为不可能用盒子阴影来做到这一点,因为你不能为这个x位置设置一个起点。

.progress-container {
  width: 100%;
  height: 11px;
  position: relative;
  background: #EAEFF5;
  border-radius: 5px;
}

.progress-container::before,
.progress-container::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.progress-container::before {
  background-color: #FF7800;
  width: 500px;
}

.progress-container::after {
  background-color: #0AA693;
  width: 80px;
}
<div class="progress-container">
</div>

于 2021-01-22T00:53:47.377 回答
0

只需增加X轴,在初始faze中设置为80px,80px 0 0 #0AA693 inset,这是阴影,第一个数字是X轴,第二个数字是Y轴,第三个数字是模糊。所以把它改成类似的东西400px 0 0 #0aa693,这就是解决方案。

.progress-container {
  width: 100%;
  height: 30px;
  position: relative;
  background: #eaeff5;
  border-radius: 3px;
  z-index: -1;

  box-shadow: 400px 0 0 #0aa693 inset, 500px 0 0 #ff7800 inset;
}

于 2021-01-22T00:54:28.250 回答