CSS中的形状渐变

时间:2019-01-10 23:43:49

标签: html css

我尝试了几个小时,以使其形状渐变等于Laracasts处的渐变。其实我的代码什么也没显示,有人可以帮我吗?

a{
    background: linear-gradient(118deg,#328bf2,#1644ad);
    border-radius: 54% 46% 64% 36%/64% 42% 58% 36%;
    content: "";
    position:absolute;
    top: -250px;
    left: 48%;
    width: 930px;
    height: 870px;
}
<a></a>

2 个答案:

答案 0 :(得分:2)

为此,我会考虑使用一些SVG,以便轻松创建形状的弯曲部分,然后将其应用为多个背景层的一部分:

.container {
  height: 100vh;
  background: 
  linear-gradient(#fff,#fff) left/calc(100% - 100vh) 100% no-repeat,
  url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" ><path d="M0 64 L64 64 C60 50 56 46 29.33 50.83 C15.33 53.16 10.5 40.33 17.16 27.66 C20 11.66 16.33 6.5 0 0 Z"  fill="white"/></svg>') right/auto 100% no-repeat, 
  linear-gradient(118deg,#328bf2,#1644ad); 
}

body {
 margin:0;
}
<div class="container">

</div>

这是一个很好的在线工具,您可以在其中轻松调整形状:

http://jxnblk.com/paths/?d=M0 64 L64 64 C60 50 56 46 29.33 50.83 C15.33 53.16 10.5 40.33 17.16 27.66 C20 11.66 16.33 6.5 0 0 Z

只需附加当前路径即可对其进行编辑。

答案 1 :(得分:0)

div
   {
     background-image: linear-gradient(to right bottom, 
     rgba((255, 0, 0, 0.8),.85),
     rgba((255, 0, 0, 0.6), .85)
     );
   }

特别是在这里,您可以通过添加-“ to right bottom”关键字来指定渐变颜色的角度。您也可以在sass中使用此方法。