3

这就是我想要实现的目标:

期望梯度

浅蓝色线条只是标记。我想要一个从中心固定 px的角度(向左偏)。而且我还希望左边的深蓝色也成为渐变色。

我可以制作我需要的角度,但我坚持将其放置在距中心的固定点,并使较暗的部分成为另一个倾斜的渐变:

.topbar {
  height: 150px;
  background: rgb(28,25,84);
  background: linear-gradient(-63deg, rgba(28,25,84,1) 50%, rgba(20,18,63,1) 0);
}
<div class="topbar"></div>

谢谢!

4

1 回答 1

4

您可以拥有多个背景,如下所示:

我将距中心的固定距离设为从中心200px偏移一半的渐变的宽度200px

.topbar {
  height: 150px;
  background: 
    
    /* the markers*/
    linear-gradient(yellow 0 0) 25% /2px 100%,
    linear-gradient(yellow 0 0) 50% /2px 100%,
    linear-gradient(yellow 0 0) 75% /2px 100%,
    /* the needed background*/
    linear-gradient(-63deg, rgba(28,25,84,1) 50%,transparent 0) calc(50% - 100px) 0/200px 100%,
    linear-gradient(rgba(28,25,84,1),rgba(28,25,84,1)) right/50% 100%,
    linear-gradient(to bottom, red,blue);
  background-repeat:no-repeat;
}
<div class="topbar"></div>

您可以查看此答案以获取有关如何使用百分比background-position值的更多详细信息:Using percent values with background-position on a linear-gradient

于 2018-11-20T21:14:37.553 回答