如何在div上创建不均匀的圆形边?

时间:2018-05-20 21:24:55

标签: html css3 svg css-shapes rounded-corners

我一直试图用不均匀的圆形边做DIV:

enter image description here

我已经检查了一些解决方案,我可以通过使用border-radius获得最接近的解决方案。我用过:

border-bottom-left-radius: 80%50px;
border-bottom-right-radius: 30%30px; 

这就是我所拥有的: enter image description here

如何做到这一点?

1 个答案:

答案 0 :(得分:14)

您可以考虑clip-path

.box {
  height: 200px;
  width: 200px;
  background: blue;
  -webkit-clip-path: circle(75% at 65% 10%);
  clip-path: circle(75% at 65% 10%);
}
<div class="box">

</div>

或使用radial-gradient

.box {
  height: 200px;
  width: 200px;
  background: radial-gradient(circle at 65% 10%, blue 75%,transparent 75.5%);

}
<div class="box">

</div>

或者使用伪元素并依赖于溢出:

.box {
  height: 200px;
  width: 200px;
  position:relative;
  overflow:hidden;
}
.box:before {
 content:"";
 position:absolute;
 top:0;
 left:-10%;
 right:-10%;
 bottom:10%;
 background:blue;
 border-radius:0 0 50% 100%;
}
<div class="box">

</div>

让我们不要忘记SVG解决方案(作为常规元素或背景)

svg {
 display:inline-block;
}

.box {
  display:inline-block;
  height:200px;
  width:200px;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'  width='200' height='200' fill='blue'> <path d='M0 0 L0 28 C10 46 30 60 64 48 L64 0 Z' /></svg>")0 0/100% 100% no-repeat;
}
<svg
  xmlns='http://www.w3.org/2000/svg'
  viewBox='0 0 64 64'
  width='200' height='200'
  fill='blue'>
  <path d='M0 0 L0 28 C10 46 30 60 64 48 L64 0 Z' />
</svg>

<div class="box">
</div>

这是一个很好的在线工具,可以轻松调整SVG http://jxnblk.com/paths/?d=M0 0 L0 28 C10 46 30 60 64 48 L64 0 Z